diff options
Diffstat (limited to 'jjb/scripts')
-rw-r--r-- | jjb/scripts/setup_vpp_ubuntu_docker_test.sh | 11 |
1 files changed, 6 insertions, 5 deletions
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 |