Apex,CSIT: changes pip3 to use just pip
[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 echo "Attempting to fetch the artifact location from ODL Jenkins"
7 CHANGE_DETAILS_URL="https://git.opendaylight.org/gerrit/changes/netvirt~master~$GERRIT_CHANGE_ID/detail"
8 # due to limitation with the Jenkins Gerrit Trigger, we need to use Gerrit REST API to get the change details
9 ODL_BUILD_JOB_NUM=$(curl -s $CHANGE_DETAILS_URL | grep -Eo 'netvirt-distribution-check-carbon/[0-9]+' | tail -1 | grep -Eo [0-9]+)
10
11 NETVIRT_ARTIFACT_URL="https://jenkins.opendaylight.org/releng/job/netvirt-distribution-check-carbon/${ODL_BUILD_JOB_NUM}/artifact/distribution-karaf-0.6.0-SNAPSHOT.zip"
12 echo -e "URL to artifact is\n\t$NETVIRT_ARTIFACT_URL"
13
14 echo "Downloading the artifact. This could take time..."
15 wget -q -O distribution-karaf-0.6.0-SNAPSHOT.zip $NETVIRT_ARTIFACT_URL
16 if [[ $? -ne 0 ]]; then
17     echo "The artifact does not exist! Probably removed due to ODL Jenkins artifact retention policy."
18     echo "Rerun netvirt-patch-test-current-carbon to get artifact rebuilt."
19     exit 1
20 fi
21
22 #TODO(trozet) remove this once odl-pipeline accepts zip files
23 echo "Converting artifact zip to tar.gz"
24 sudo pip install ruamel.zip2tar
25 zip2tar distribution-karaf-0.6.0-SNAPSHOT.zip --gz --tar-file-name /tmp/${NETVIRT_ARTIFACT}
26
27 echo "Download complete"
28 ls -al /tmp/${NETVIRT_ARTIFACT}