Set nocache for fuel artifacts on artifacts.opnfv.org
[releng.git] / jjb / fuel / fuel-download-artifact.sh
1 #!/bin/bash
2 set -o errexit
3 set -o nounset
4 set -o pipefail
5
6 if [[ "$JOB_NAME" =~ "merge" ]]; then
7     echo "Downloading http://$GS_URL/opnfv-gerrit-$GERRIT_CHANGE_NUMBER.properties"
8     # get the properties file for the Fuel ISO built for a merged change
9     curl -s -o $WORKSPACE/latest.properties http://$GS_URL/opnfv-gerrit-$GERRIT_CHANGE_NUMBER.properties
10 else
11     # get the latest.properties file in order to get info regarding latest artifact
12     echo "Downloading http://$GS_URL/latest.properties"
13     curl -s -o $WORKSPACE/latest.properties http://$GS_URL/latest.properties
14 fi
15
16 # check if we got the file
17 [[ -f latest.properties ]] || exit 1
18
19 # source the file so we get OPNFV vars
20 source latest.properties
21
22 # log info to console
23 echo "Downloading the $INSTALLER_TYPE artifact using URL http://$OPNFV_ARTIFACT_URL"
24 echo "This could take some time..."
25 echo "--------------------------------------------------------"
26 echo
27
28 # download the file
29 curl -s -o $WORKSPACE/opnfv.iso http://$OPNFV_ARTIFACT_URL > gsutil.iso.log 2>&1
30
31 # list the file
32 ls -al $WORKSPACE/opnfv.iso
33
34 echo
35 echo "--------------------------------------------------------"
36 echo "Done!"