X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fkvmfornfv%2Fkvmfornfv-download-artifact.sh;h=ea37eb29cc3c07515e6f43071af80de971059c72;hb=070e10f2ce201755dc244f42aa5272d6f918b633;hp=89b7e31641f14845c3379ff11cea40f9de3950a5;hpb=912a8810e8c04bbe8488ebe4121ada643bd41e91;p=releng.git diff --git a/jjb/kvmfornfv/kvmfornfv-download-artifact.sh b/jjb/kvmfornfv/kvmfornfv-download-artifact.sh index 89b7e3164..ea37eb29c 100755 --- a/jjb/kvmfornfv/kvmfornfv-download-artifact.sh +++ b/jjb/kvmfornfv/kvmfornfv-download-artifact.sh @@ -1,4 +1,7 @@ #!/bin/bash +set -o errexit +set -o nounset +set -o pipefail if [[ "$JOB_NAME" =~ (verify|merge|daily|weekly) ]]; then JOB_TYPE=${BASH_REMATCH[0]} @@ -13,13 +16,21 @@ case "$JOB_TYPE" in echo "Downloading artifacts for the change $GERRIT_CHANGE_NUMBER. This could take some time..." GS_UPLOAD_LOCATION="gs://artifacts.opnfv.org/$PROJECT/review/$GERRIT_CHANGE_NUMBER" ;; + daily) + gsutil cp gs://$GS_URL/latest.properties $WORKSPACE/latest.properties + source $WORKSPACE/latest.properties + GS_UPLOAD_LOCATION=$OPNFV_ARTIFACT_URL + echo "Downloading artifacts from $GS_UPLOAD_LOCATION for daily run. This could take some time..." + ;; *) echo "Artifact download is not enabled for $JOB_TYPE jobs" exit 1 esac +GS_GUESTIMAGE_LOCATION="gs://artifacts.opnfv.org/$PROJECT/guest-image" /bin/mkdir -p $WORKSPACE/build_output gsutil cp -r $GS_UPLOAD_LOCATION/* $WORKSPACE/build_output > $WORKSPACE/gsutil.log 2>&1 +gsutil cp $GS_GUESTIMAGE_LOCATION/guest1.sha512 $WORKSPACE/build_output > $WORKSPACE/gsutil.log 2>&1 echo "--------------------------------------------------------" ls -al $WORKSPACE/build_output