Merge "docs: fix ODT document creation"
[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 artifact metadata
20 source latest.properties
21
22 # echo the info about artifact that is used during the deployment
23 OPNFV_ARTIFACT=${OPNFV_ARTIFACT_URL/*\/}
24 echo "Using $OPNFV_ARTIFACT for deployment"
25
26 # check if we already have the ISO to avoid redownload
27 ISO_STORE=$HOME/opnfv/iso_store/fuel
28 if [[ -f "$ISO_STORE/$OPNFV_ARTIFACT" ]]; then
29     echo "ISO already exists. Skipping the download"
30     ln -s $ISO_STORE/$OPNFV_ARTIFACT $WORKSPACE/opnfv.iso
31     ls -al $WORKSPACE/opnfv.iso
32     exit 0
33 fi
34
35 # log info to console
36 echo "Downloading the $INSTALLER_TYPE artifact using URL http://$OPNFV_ARTIFACT_URL"
37 echo "This could take some time..."
38 echo "--------------------------------------------------------"
39 echo
40
41 # download the file
42 curl -s -o $WORKSPACE/opnfv.iso http://$OPNFV_ARTIFACT_URL > gsutil.iso.log 2>&1
43
44 # list the file
45 ls -al $WORKSPACE/opnfv.iso
46
47 echo
48 echo "--------------------------------------------------------"
49 echo "Done!"