b958dc97d9040d2e92e8320db06e5e39c81e8aa0
[csit.git] / resources / tools / download_hc_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 URL="https://nexus.fd.io/service/local/artifact/maven/content"
24 VER="RELEASE"
25 REPO="fd.io.${STREAM}.${OS}"
26 GROUP="io.fd.vpp"
27 HC_GROUP="io.fd.hc2vpp"
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 HC_ARTIFACTS="honeycomb"
31 NSH_ARTIFACTS="vpp-nsh-plugin"
32
33 if [ "${OS}" == "ubuntu1404" ]; then
34     OS="ubuntu.trusty.main"
35     PACKAGE="deb deb.md5"
36     CLASS="deb"
37 elif [ "${OS}" == "ubuntu1604" ]; then
38     OS="ubuntu.xenial.main"
39     PACKAGE="deb deb.md5"
40     CLASS="deb"
41 elif [ "${OS}" == "centos7" ]; then
42     OS="centos7"
43     PACKAGE="rpm rpm.md5"
44     CLASS="rpm"
45 fi
46
47 for ART in ${VPP_ARTIFACTS}; do
48     for PAC in $PACKAGE; do
49         curl "${URL}?r=${REPO}&g=${GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
50     done
51 done
52
53 for ART in ${HC_ARTIFACTS}; do
54     for PAC in $PACKAGE; do
55         curl "${URL}?r=${REPO}&g=${HC_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
56     done
57 done
58
59 for ART in ${NSH_ARTIFACTS}; do
60     for PAC in $PACKAGE; do
61         curl "${URL}?r=${REPO}&g=${NSH_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
62     done
63 done
64
65 for FILE in *.deb; do
66     echo " "${FILE} >> ${FILE}.md5
67 done
68
69 for MD5FILE in *.md5; do
70     md5sum -c ${MD5FILE} || exit
71 done