From 6a2f3c5a315dc6a306c7ee94dc18a16daab2bd55 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Mon, 22 Aug 2016 13:20:17 +0200 Subject: 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 --- jjb/armband/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- cgit 1.2.3-korg