diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2016-12-12 17:52:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-12 17:52:36 +0000 |
commit | bab9e484588f14a304dfdb76dc99a054f3cc8442 (patch) | |
tree | d894f0d7ce68711ee196fe07e79611dc27ee9e0f /jjb/3rd_party_ci/download-netvirt-artifact.sh | |
parent | 2965cd80ab2d10ab192220b130f26b3878e60667 (diff) | |
parent | 8578eae1f451aef3ce4f4f499f43ed924a2a0efa (diff) |
Merge "3rd party ci: Create jobs for ODL netvirt testing in OPNFV"
Diffstat (limited to 'jjb/3rd_party_ci/download-netvirt-artifact.sh')
-rwxr-xr-x | jjb/3rd_party_ci/download-netvirt-artifact.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/jjb/3rd_party_ci/download-netvirt-artifact.sh b/jjb/3rd_party_ci/download-netvirt-artifact.sh new file mode 100755 index 000000000..d0b9a05d7 --- /dev/null +++ b/jjb/3rd_party_ci/download-netvirt-artifact.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +echo "Attempting to fetch the artifact location from ODL Jenkins" +CHANGE_DETAILS_URL="https://git.opendaylight.org/gerrit/changes/netvirt~master~$GERRIT_CHANGE_ID/detail" +# due to limitation with the Jenkins Gerrit Trigger, we need to use Gerrit REST API to get the change details +ODL_JOB_URL=$(curl -s $CHANGE_DETAILS_URL | grep netvirt-patch-test-current-carbon | tail -1 | \ + sed 's/\\n//g' | awk '{print $6}') +NETVIRT_ARTIFACT_URL="${ODL_JOB_URL}org.opendaylight.integration\$distribution-karaf/artifact/org.opendaylight.integration/distribution-karaf/0.6.0-SNAPSHOT/distribution-karaf-0.6.0-SNAPSHOT.tar.gz" +echo -e "URL to artifact is\n\t$NETVIRT_ARTIFACT_URL" +echo "Downloading the artifact. This could take time..." +curl -s -o $NETVIRT_ARTIFACT $NETVIRT_ARTIFACT_URL +echo "Download complete" +ls -al $NETVIRT_ARTIFACT |