HC Tests: remove trusty from download_hc_*.sh scripts
[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 VPP_ARTIFACTS="vpp vpp-lib vpp-plugins"
30
31 if [ "${OS}" == "ubuntu1604" ]; then
32     OS="ubuntu.xenial.main"
33     PACKAGE="deb deb.md5"
34     CLASS="deb"
35 elif [ "${OS}" == "centos7" ]; then
36     OS="centos7"
37     PACKAGE="rpm rpm.md5"
38     CLASS=""
39 fi
40
41 REPO="fd.io.${STREAM}.${OS}"
42
43 # download latest honeycomb and nsh packages
44 for ART in ${HC_ARTIFACTS}; do
45     for PAC in ${PACKAGE}; do
46         curl "${URL}?r=${REPO}&g=${HC_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
47     done
48 done
49
50 # TODO(CSIT-994): reenable NSH
51 # for ART in ${NSH_ARTIFACTS}; do
52 #     for PAC in ${PACKAGE}; do
53 #         curl "${URL}?r=${REPO}&g=${NSH_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
54 #     done
55 # done
56
57 # determine VPP dependency
58 # use latest if honeycomb package does not depend on single VPP version, e.g. stable branches since HC2VPP-285
59 VER="RELEASE"
60 if [ "${OS}" == "centos7" ]; then
61     HC_VPP_VER=`rpm -qpR honeycomb*.rpm | grep -oP 'vpp = \K.+'`
62     if [ "${HC_VPP_VER}" != "" ]; then
63         VER=${HC_VPP_VER}.x86_64
64     fi
65 else
66     HC_VPP_VER=`dpkg -I honeycomb*.deb | grep -oP 'vpp \(= \K[^\)]+'`
67     if [ "${HC_VPP_VER}" != "" ]; then
68         VER=${HC_VPP_VER}_amd64
69     fi
70 fi
71
72 # download VPP packages
73 for ART in ${VPP_ARTIFACTS}; do
74     for PAC in ${PACKAGE}; do
75         curl "${URL}?r=${REPO}&g=${GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
76     done
77 done
78
79 # verify downloaded package
80 if [ "${OS}" == "centos7" ]; then
81     FILES=*.rpm
82 else
83     FILES=*.deb
84 fi
85
86 for FILE in ${FILES}; do
87     echo " "${FILE} >> ${FILE}.md5
88 done
89 for MD5FILE in *.md5; do
90     md5sum -c ${MD5FILE} || exit
91     rm ${MD5FILE}
92 done