c8e902117875a1a169ab203d3f0eda4ab7c5d89b
[csit.git] / resources / tools / scripts / download_hc_pkgs.sh
1 #!/bin/bash
2
3 # Copyright (c) 2017 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 -x
17
18 STREAM=$1
19 OS=$2
20
21 URL="https://nexus.fd.io/service/local/artifact/maven/content"
22 VER="RELEASE"
23 GROUP="io.fd.vpp"
24 HC_GROUP="io.fd.hc2vpp"
25 HC_ARTIFACTS="honeycomb"
26 # TODO(CSIT-994): reenable NSH
27 # NSH_GROUP="io.fd.nsh_sfc"
28 # NSH_ARTIFACTS="vpp-nsh-plugin"
29
30 if [ "${OS}" == "ubuntu1404" ]; then
31     OS="ubuntu.trusty.main"
32     PACKAGE="deb deb.md5"
33     CLASS="deb"
34     VPP_ARTIFACTS="vpp vpp-dbg vpp-lib vpp-plugins"
35 elif [ "${OS}" == "ubuntu1604" ]; then
36     OS="ubuntu.xenial.main"
37     PACKAGE="deb deb.md5"
38     CLASS="deb"
39     VPP_ARTIFACTS="vpp vpp-dbg vpp-lib vpp-plugins"
40 elif [ "${OS}" == "centos7" ]; then
41     OS="centos7"
42     PACKAGE="rpm rpm.md5"
43     CLASS=""
44     VPP_ARTIFACTS="vpp vpp-debuginfo vpp-lib vpp-plugins"
45 fi
46
47 REPO="fd.io.${STREAM}.${OS}"
48
49 # download latest honeycomb and nsh packages
50 for ART in ${HC_ARTIFACTS}; do
51     for PAC in ${PACKAGE}; do
52         curl "${URL}?r=${REPO}&g=${HC_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
53     done
54 done
55
56 # TODO(CSIT-994): reenable NSH
57 # for ART in ${NSH_ARTIFACTS}; do
58 #     for PAC in ${PACKAGE}; do
59 #         curl "${URL}?r=${REPO}&g=${NSH_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
60 #     done
61 # done
62
63 # determine VPP dependency
64 # use latest if honeycomb package does not depend on single VPP version, e.g. stable branches since HC2VPP-285
65 VER="RELEASE"
66 if [ "${OS}" == "centos7" ]; then
67     HC_VPP_VER=`rpm -qpR honeycomb*.rpm | grep -oP 'vpp = \K.+'`
68     if [ "${HC_VPP_VER}" != "" ]; then
69         VER=${HC_VPP_VER}.x86_64
70     fi
71 else
72     HC_VPP_VER=`dpkg -I honeycomb*.deb | grep -oP 'vpp \(= \K[^\)]+'`
73     if [ "${HC_VPP_VER}" != "" ]; then
74         VER=${HC_VPP_VER}_amd64
75     fi
76 fi
77
78 # download VPP packages
79 for ART in ${VPP_ARTIFACTS}; do
80     for PAC in ${PACKAGE}; do
81         curl "${URL}?r=${REPO}&g=${GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
82     done
83 done
84
85 # verify downloaded package
86 if [ "${OS}" == "centos7" ]; then
87     FILES=*.rpm
88 else
89     FILES=*.deb
90 fi
91
92 for FILE in ${FILES}; do
93     echo " "${FILE} >> ${FILE}.md5
94 done
95 for MD5FILE in *.md5; do
96     md5sum -c ${MD5FILE} || exit
97     rm ${MD5FILE}
98 done