Merge "jjb/releng: fix compass-container $DOCKERFILE"
[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 if [ "$ODL_BRANCH" != 'master' ]; then
10   DIST=$(echo ${ODL_BRANCH} | sed -rn 's#([a-zA-Z]+)/([a-zA-Z]+)#\2#p')
11   ODL_BRANCH=$(echo ${ODL_BRANCH} | sed -rn 's#([a-zA-Z]+)/([a-zA-Z]+)#\1%2F\2#p')
12 else
13   DIST='nitrogen'
14 fi
15 CHANGE_DETAILS_URL="https://git.opendaylight.org/gerrit/changes/netvirt~${ODL_BRANCH}~${GERRIT_CHANGE_ID}/detail"
16 # due to limitation with the Jenkins Gerrit Trigger, we need to use Gerrit REST API to get the change details
17 ODL_BUILD_JOB_NUM=$(curl --fail -s ${CHANGE_DETAILS_URL} | grep -Eo "netvirt-distribution-check-${DIST}/[0-9]+" | tail -1 | grep -Eo [0-9]+)
18 DISTRO_CHECK_CONSOLE_LOG="https://logs.opendaylight.org/releng/jenkins092/netvirt-distribution-check-${DIST}/${ODL_BUILD_JOB_NUM}/console.log.gz"
19 NETVIRT_ARTIFACT_URL=$(curl --fail -s --compressed ${DISTRO_CHECK_CONSOLE_LOG} | grep 'BUNDLE_URL' | cut -d = -f 2)
20
21 echo -e "URL to artifact is\n\t$NETVIRT_ARTIFACT_URL"
22
23 echo "Downloading the artifact. This could take time..."
24 wget -q -O $ODL_ZIP $NETVIRT_ARTIFACT_URL
25 if [[ $? -ne 0 ]]; then
26     echo "The artifact does not exist! Probably removed due to ODL Jenkins artifact retention policy."
27     echo "Rerun netvirt-patch-test-current-carbon to get artifact rebuilt."
28     exit 1
29 fi
30
31 #TODO(trozet) remove this once odl-pipeline accepts zip files
32 echo "Converting artifact zip to tar.gz"
33 unzip $ODL_ZIP
34 tar czf /tmp/${NETVIRT_ARTIFACT} $(echo $ODL_ZIP | sed -n 's/\.zip//p')
35
36 echo "Download complete"
37 ls -al /tmp/${NETVIRT_ARTIFACT}