X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=docker%2Fscripts%2Fdbld_vpp_install_packages.sh;h=5e1e0f8f0b948306c735ac1c316e68c71185995a;hb=7b7ffa99873e679b637ef00a3953ddd1f5a28aae;hp=c30fb25b5e23f83ede9e129fc22f0425c14803b2;hpb=c05cabe676cf0735cc1b3fbaf643dfd02c0618ee;p=ci-management.git diff --git a/docker/scripts/dbld_vpp_install_packages.sh b/docker/scripts/dbld_vpp_install_packages.sh index c30fb25b5..5e1e0f8f0 100755 --- a/docker/scripts/dbld_vpp_install_packages.sh +++ b/docker/scripts/dbld_vpp_install_packages.sh @@ -35,11 +35,6 @@ for branch in ${VPP_BRANCHES[$OS_NAME]} ; do # Install OS packages make_vpp "install-dep" "$branch" - if [ "$OS_ID" = "ubuntu" ] && [ "$OS_ARCH" = "x86_64" ] ; then - # 'Make docs jobs are only run on ubuntu x86_64 executors - # so only run for ubuntu build executors. - make_vpp "docs-venv" "$branch" - fi # Download, build, and cache external deps packages make_vpp "install-ext-deps" "$branch" @@ -57,6 +52,12 @@ for branch in ${VPP_BRANCHES[$OS_NAME]} ; do echo "ERROR: Missing VPP external deps package: '$vpp_ext_deps_pkg'" exit 1 fi + # TODO: remove this after all supported VPP branches have removed + # python3-virtualenv & virtualenv from install-deps which are no longer + # used in vpp repo. These packages can mess up csit virtualenv + # installation which uses pip3 + sudo apt remove -y --purge --autoremove python3-virtualenv virtualenv || true + # Install/cache python packages make_vpp_test "test-dep" "$branch" if [ "$OS_ID" = "ubuntu" ] ; then