Get ODL distro from the new location on the nexus log server
[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-nitrogen/[0-9]+' | tail -1 | grep -Eo [0-9]+)
12 DISTRO_CHECK_CONSOLE_LOG="https://logs.opendaylight.org/releng/jenkins092/netvirt-distribution-check-nitrogen/${ODL_BUILD_JOB_NUM}/console.log.gz"
13 NETVIRT_ARTIFACT_URL=$(curl -s --compressed $DISTRO_CHECK_CONSOLE_LOG | grep 'BUNDLE_URL' | cut -d = -f 2)
14
15 echo -e "URL to artifact is\n\t$NETVIRT_ARTIFACT_URL"
16
17 echo "Downloading the artifact. This could take time..."
18 wget -q -O $ODL_ZIP $NETVIRT_ARTIFACT_URL
19 if [[ $? -ne 0 ]]; then
20     echo "The artifact does not exist! Probably removed due to ODL Jenkins artifact retention policy."
21     echo "Rerun netvirt-patch-test-current-carbon to get artifact rebuilt."
22     exit 1
23 fi
24
25 #TODO(trozet) remove this once odl-pipeline accepts zip files
26 echo "Converting artifact zip to tar.gz"
27 unzip $ODL_ZIP
28 tar czf /tmp/${NETVIRT_ARTIFACT} $(echo $ODL_ZIP | sed -n 's/\.zip//p')
29
30 echo "Download complete"
31 ls -al /tmp/${NETVIRT_ARTIFACT}