3847c4ab1c0dc44779511c5cb823524380bd7dbf
[csit.git] / resources / tools / download_hc_build_pkgs.sh
1 #!/bin/bash
2
3 # Copyright (c) 2016 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 set -ex
17
18 trap 'rm -f *.deb.md5; exit' EXIT
19 trap 'rm -f *.deb.md5;rm -f *.deb; exit' ERR
20 STREAM=$1
21 OS=$2
22
23 # Download the latest VPP and VPP plugin .deb packages
24 URL="https://nexus.fd.io/service/local/artifact/maven/content"
25 VER="LATEST"
26 REPO="fd.io.${STREAM}.ubuntu.trusty.main"
27 VPP_GROUP="io.fd.vpp"
28 NSH_GROUP="io.fd.nsh_sfc"
29 VPP_ARTIFACTS="vpp vpp-dbg vpp-dev vpp-dpdk-dev vpp-dpdk-dkms vpp-lib vpp-plugins vpp-api-java"
30 NSH_ARTIFACTS="vpp-nsh-plugin"
31
32 if [ "${OS}" == "ubuntu1404" ]; then
33     OS="ubuntu.trusty.main"
34     PACKAGE="deb deb.md5"
35     CLASS="deb"
36 elif [ "${OS}" == "ubuntu1604" ]; then
37     OS="ubuntu.xenial.main"
38     PACKAGE="deb deb.md5"
39     CLASS="deb"
40 elif [ "${OS}" == "centos7" ]; then
41     OS="centos7"
42     PACKAGE="rpm rpm.md5"
43     CLASS="rpm"
44 fi
45
46 for ART in ${VPP_ARTIFACTS}; do
47     for PAC in $PACKAGE; do
48         curl "${URL}?r=${REPO}&g=${VPP_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
49     done
50 done
51
52 for ART in ${NSH_ARTIFACTS}; do
53     for PAC in $PACKAGE; do
54         curl "${URL}?r=${REPO}&g=${NSH_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
55     done
56 done
57
58 for FILE in *.deb; do
59     echo " "${FILE} >> ${FILE}.md5
60 done
61
62 for MD5FILE in *.md5; do
63     md5sum -c ${MD5FILE} || exit
64 done