470773d6ba3534d96b03e0b97b8f54c758247eb9
[ovsnfv.git] / ci / upload_artifacts.sh
1 #!/bin/bash
2
3 # Copyright (c) 2016 Open Platform for NFV Project, Inc. and its contributors
4 #
5 #    Licensed under the Apache License, Version 2.0 (the "License");
6 #    you may not use this file except in compliance with the License.
7 #    You may obtain a copy of the License at
8 #
9 #        http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #    Unless required by applicable law or agreed to in writing, software
12 #    distributed under the License is distributed on an "AS IS" BASIS,
13 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #    See the License for the specific language governing permissions and
15 #    limitations under the License.
16
17 set -o errexit
18 set -o nounset
19 set -o pipefail
20
21 # log info to console
22 echo "Uploading the OVS $VERSION RPM artifacts. "
23 echo "-----------------------------------------"
24 echo
25
26 export RPMFILE_D=openvswitch-debuginfo-$VERSION-1.x86_64.rpm
27 export RPMFILE=openvswitch-$VERSION-1.x86_64.rpm
28
29 # upload artifact and additional files to google storage
30 echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D gs://$GS_URL/opnfv-$DATE-$RPMFILE_D
31 gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D gs://$GS_URL/opnfv-$DATE-$RPMFILE_D
32
33 echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE gs://$GS_URL/opnfv-$DATE-$RPMFILE
34 gsutil cp $TMP_RELEASE_DIR/$RPMFILE gs://$GS_URL/opnfv-$DATE-$RPMFILE
35
36 echo
37 echo "------------------------------------------------------"
38 echo "Done!"
39 echo "Artifacts are available as http://$GS_URL/opnfv-$DATE-$RPMFILE"