From: Ed Kern Date: Tue, 6 Mar 2018 16:28:26 +0000 (-0700) Subject: VPP: Altered dkms from download to cached copy X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=7bb563024c22835bfd4c487593230eee98f9cf7d;p=ci-management.git VPP: Altered dkms from download to cached copy Previously was driving pkg download with every vpp-csit build. This will now used a cached copy instead to avoid failures when dpdk repo has outages Change-Id: I3d9bf6c369cc161a8a53cb22df93d10dd17c0031 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 d7a2ee16f..9212fcab4 100644 --- a/jjb/scripts/setup_vpp_ubuntu_docker_test.sh +++ b/jjb/scripts/setup_vpp_ubuntu_docker_test.sh @@ -31,7 +31,7 @@ elif [ "${OS_ID}" == "opensuse" ]; then fi if [ "x${IS_CSIT_VPP_JOB}" == "xTrue" ]; then - (cd dpdk ; apt-get download vpp-dpdk-dkms > /dev/null 2>&1) || true + (cp /w/dpdk/vpp-dpdk-dkms*.deb ./dpdk/ > /dev/null 2>&1 ) || true ls -l dpdk/*.deb || true echo "csit vpp-dpdk-dkms package download" fi \ No newline at end of file