HC Test: Test jobs for 17.01
[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
22 URL="https://nexus.fd.io/service/local/artifact/maven/content"
23 VER="RELEASE"
24 REPO="fd.io.${STREAM}.ubuntu.trusty.main"
25 GROUP="io.fd.vpp"
26 HC_GROUP="io.fd.hc2vpp"
27 NSH_GROUP="io.fd.nsh_sfc"
28 VPP_ARTIFACTS="vpp vpp-dbg vpp-dev vpp-dpdk-dev vpp-dpdk-dkms vpp-lib vpp-plugins"
29 HC_ARTIFACTS="honeycomb"
30 NSH_ARTIFACTS="vpp-nsh-plugin"
31 PACKAGE="deb deb.md5"
32 CLASS="deb"
33
34 for ART in ${VPP_ARTIFACTS}; do
35     for PAC in $PACKAGE; do
36         curl "${URL}?r=${REPO}&g=${GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
37     done
38 done
39
40 for ART in ${HC_ARTIFACTS}; do
41     for PAC in $PACKAGE; do
42         curl "${URL}?r=${REPO}&g=${HC_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
43     done
44 done
45
46 for ART in ${NSH_ARTIFACTS}; do
47     for PAC in $PACKAGE; do
48         curl "${URL}?r=${REPO}&g=${NSH_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
49     done
50 done
51
52 for FILE in *.deb; do
53     echo " "${FILE} >> ${FILE}.md5
54 done
55
56 for MD5FILE in *.md5; do
57     md5sum -c ${MD5FILE} || exit
58 done