From 77873c7c4c3793b3a9a5fa0e5daa6884dabb2e82 Mon Sep 17 00:00:00 2001 From: Jan Gelety Date: Tue, 15 Mar 2016 13:45:55 +0100 Subject: Bootstrap to test csit-master against VPP release. - get the version of the latest VPP build - download and install the latest VPP build on nodes - run three times all test suites to check if the VPP build can be used for csit development and current csit master can be pushed to master-verified branch (see patch https://gerrit.fd.io/r/590) Change-Id: I0ad2e9fe1620cc18ccc11dce2d107177cf97ff27 Signed-off-by: Jan Gelety --- resources/tools/download_install_vpp_pkgs.sh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'resources/tools/download_install_vpp_pkgs.sh') diff --git a/resources/tools/download_install_vpp_pkgs.sh b/resources/tools/download_install_vpp_pkgs.sh index 0d95e75922..025be87720 100755 --- a/resources/tools/download_install_vpp_pkgs.sh +++ b/resources/tools/download_install_vpp_pkgs.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Copyright (c) 2016 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); @@ -13,7 +13,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -x +set -ex + +trap 'rm -f *.deb.md5; exit' EXIT +trap 'rm -f *.deb.md5;rm -f *.deb; exit' ERR URL="https://nexus.fd.io/service/local/artifact/maven/content" VER="RELEASE" @@ -36,5 +39,9 @@ for MD5FILE in *.md5; do md5sum -c ${MD5FILE} || exit done -echo sudo dpkg -i *.deb - +if [ "$1" != "--skip-install" ]; then + echo Installing VPP + sudo dpkg -i *.deb +else + echo VPP Installation skipped +fi -- cgit 1.2.3-korg