diff options
author | Thomas F Herbert <therbert@redhat.com> | 2015-12-13 23:22:43 -0500 |
---|---|---|
committer | Thomas F Herbert <therbert@redhat.com> | 2015-12-18 06:41:21 -0500 |
commit | ae9133bb8eb8322d411722617f667e01df63d5b9 (patch) | |
tree | 7fa6c47d41096101d816b5dce02b087f2cbb663b /ci/upload_artifacts.sh | |
parent | 1adea4369e52d835e7210a79cf2e0e15cb4d52c7 (diff) |
Script to build plain OVS RPM from master.
Uploads RPM to artifactory.
Jira: OVSNFV-19
Change-Id: I586418a5e12435fd9d1594a4d2aca544c16a3a6d
Signed-off-by: Thomas F Herbert <therbert@redhat.com>
Diffstat (limited to 'ci/upload_artifacts.sh')
-rwxr-xr-x | ci/upload_artifacts.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ci/upload_artifacts.sh b/ci/upload_artifacts.sh new file mode 100755 index 0000000..765a336 --- /dev/null +++ b/ci/upload_artifacts.sh @@ -0,0 +1,24 @@ +#!/bin/bash +set -o errexit +set -o nounset +set -o pipefail + +# log info to console +echo "Uploading the OVS $VERSION RPM artifacts. " +echo "-----------------------------------------" +echo + +export RPMFILE_D=openvswitch-debuginfo-$VERSION-1.x86_64.rpm +export RPMFILE=openvswitch-$VERSION-1.x86_64.rpm + +# upload artifact and additional files to google storage +echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D gs://artifacts.opnfv.org/ovsnfv/opnfv-$DATE-$RPMFILE_D +gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D gs://artifacts.opnfv.org/ovsnfv/opnfv-$DATE-$RPMFILE_D + +echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE gs://artifacts.opnfv.org/ovsnfv/opnfv-$DATE-$RPMFILE +gsutil cp $TMP_RELEASE_DIR/$RPMFILE gs://artifacts.opnfv.org/ovsnfv/opnfv-$DATE-$RPMFILE + +echo +echo "------------------------------------------------------" +echo "Done!" +echo "Artifacts are available as http://artifacts.opnfv.org/ovsnfv/opnfv-$DATE-$RPMFILE" |