blob: ea37eb29cc3c07515e6f43071af80de971059c72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
if [[ "$JOB_NAME" =~ (verify|merge|daily|weekly) ]]; then
JOB_TYPE=${BASH_REMATCH[0]}
else
echo "Unable to determine job type!"
exit 1
fi
# do stuff differently based on the job type
case "$JOB_TYPE" in
verify)
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
echo "--------------------------------------------------------"
echo
echo "Downloaded artifacts!"
|