71a2efea2460e0263adbb1310730db33855da87b
[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
21 # Download the latest VPP and VPP plugin .deb packages
22 URL="https://nexus.fd.io/service/local/artifact/maven/content"
23 VER="LATEST"
24 REPO='fd.io.master.ubuntu.trusty.main'
25 VPP_GROUP="io.fd.vpp"
26 NSH_GROUP="io.fd.nsh_sfc"
27 VPP_ARTIFACTS="vpp vpp-dbg vpp-dev vpp-dpdk-dev vpp-dpdk-dkms vpp-lib vpp-plugins vpp-api-java"
28 NSH_ARTIFACTS="vpp-nsh-plugin"
29 PACKAGE="deb deb.md5"
30 CLASS="deb"
31
32 for ART in ${VPP_ARTIFACTS}; do
33     for PAC in $PACKAGE; do
34         curl "${URL}?r=${REPO}&g=${VPP_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
35     done
36 done
37
38 for ART in ${NSH_ARTIFACTS}; do
39     for PAC in $PACKAGE; do
40         curl "${URL}?r=${REPO}&g=${NSH_GROUP}&a=${ART}&p=${PAC}&v=${VER}&c=${CLASS}" -O -J || exit
41     done
42 done
43
44 for FILE in *.deb; do
45     echo " "${FILE} >> ${FILE}.md5
46 done
47
48 for MD5FILE in *.md5; do
49     md5sum -c ${MD5FILE} || exit
50 done