Merge "Removing SELINUX class from server manifest"
[releng.git] / jjb / 3rd_party_ci / download-netvirt-artifact.sh
1 #!/bin/bash
2 set -o errexit
3 set -o nounset
4 set -o pipefail
5
6 ODL_ZIP=distribution-karaf-0.6.0-SNAPSHOT.zip
7
8 echo "Attempting to fetch the artifact location from ODL Jenkins"
9 CHANGE_DETAILS_URL="https://git.opendaylight.org/gerrit/changes/netvirt~master~$GERRIT_CHANGE_ID/detail"
10 # due to limitation with the Jenkins Gerrit Trigger, we need to use Gerrit REST API to get the change details
11 ODL_BUILD_JOB_NUM=$(curl -s $CHANGE_DETAILS_URL | grep -Eo 'netvirt-distribution-check-carbon/[0-9]+' | tail -1 | grep -Eo [0-9]+)
12
13 NETVIRT_ARTIFACT_URL="https://jenkins.opendaylight.org/releng/job/netvirt-distribution-check-carbon/${ODL_BUILD_JOB_NUM}/artifact/${ODL_ZIP}"
14 echo -e "URL to artifact is\n\t$NETVIRT_ARTIFACT_URL"
15
16 echo "Downloading the artifact. This could take time..."
17 wget -q -O $ODL_ZIP $NETVIRT_ARTIFACT_URL
18 if [[ $? -ne 0 ]]; then
19     echo "The artifact does not exist! Probably removed due to ODL Jenkins artifact retention policy."
20     echo "Rerun netvirt-patch-test-current-carbon to get artifact rebuilt."
21     exit 1
22 fi
23
24 #TODO(trozet) remove this once odl-pipeline accepts zip files
25 echo "Converting artifact zip to tar.gz"
26 unzip $ODL_ZIP
27 tar czf /tmp/${NETVIRT_ARTIFACT} $(echo $ODL_ZIP | sed -n 's/\.zip//p')
28
29 echo "Download complete"
30 ls -al /tmp/${NETVIRT_ARTIFACT}