From: Ed Kern Date: Wed, 21 Feb 2018 16:55:09 +0000 (-0700) Subject: VPP: ASSuME proof pkg lister X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=0a020d60ba73d0ae68805571f99dbb777759b851;p=ci-management.git VPP: ASSuME proof pkg lister Change-Id: Ie4e6289ef024ad0b40734d01d5990c43ff845b52 Signed-off-by: Ed Kern --- diff --git a/jjb/scripts/setup_vpp_ubuntu_docker_test.sh b/jjb/scripts/setup_vpp_ubuntu_docker_test.sh index d0140c171..090913966 100644 --- a/jjb/scripts/setup_vpp_ubuntu_docker_test.sh +++ b/jjb/scripts/setup_vpp_ubuntu_docker_test.sh @@ -17,13 +17,14 @@ if ! [ -z ${DOCKER_TEST} ] ; then fi if [ "${OS_ID}" == "ubuntu" ]; then - dpkg-query -W -f='${binary:Package}\t${Version}\n' - pip list + dpkg-query -W -f='${binary:Package}\t${Version}\n' || true + pip list || true elif [ "${OS_ID}" == "centos" ]; then - yum list installed - pip list + yum list installed || true + pip list || true elif [ "${OS_ID}" == "opensuse" ]; then - pip list + yum list installed || true + pip list || true fi if [ "x${IS_CSIT_VPP_JOB}" == "xTrue" ]; then (cd dpdk ; apt-get download vpp-dpdk-dkms > /dev/null 2>&1) || true