From: Alexandru Avadanii Date: Mon, 22 Aug 2016 11:20:17 +0000 (+0200) Subject: armband: fix daily build without properties file X-Git-Tag: colorado.1.0~131 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=6a2f3c5a315dc6a306c7ee94dc18a16daab2bd55;p=releng.git armband: fix daily build without properties file For the first time the daily build is ran, the properties file for the latest ISO built is not present. Change-Id: Ic744c779ddc670cc2b9bcea111d28fd97f76af67 Signed-off-by: Alexandru Avadanii --- diff --git a/jjb/armband/build.sh b/jjb/armband/build.sh index 0d357576b..300306f77 100755 --- a/jjb/armband/build.sh +++ b/jjb/armband/build.sh @@ -29,8 +29,10 @@ if [[ "$JOB_NAME" =~ "daily" ]]; then echo "Checking to see if we already built and stored Armband Fuel ISO for this commit" curl -s -o $LATEST_ISO_PROPERTIES http://$GS_URL/latest.properties 2>/dev/null +fi - # get metadata of latest ISO +# get metadata of latest ISO +if grep -q OPNFV_GIT_SHA1 $LATEST_ISO_PROPERTIES 2>/dev/null; then LATEST_ISO_SHA1=$(grep OPNFV_GIT_SHA1 $LATEST_ISO_PROPERTIES | cut -d'=' -f2) LATEST_ISO_URL=$(grep OPNFV_ARTIFACT_URL $LATEST_ISO_PROPERTIES | cut -d'=' -f2) else