summaryrefslogtreecommitdiffstats
path: root/docker/scripts/dbld_csit_install_packages.sh
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2024-01-25 16:09:00 -0500
committerDave Wallace <dwallacelf@gmail.com>2024-03-26 16:07:29 -0400
commit7b7ffa99873e679b637ef00a3953ddd1f5a28aae (patch)
treeee378a25fb3379999461bd0351400e04eb206497 /docker/scripts/dbld_csit_install_packages.sh
parentc05cabe676cf0735cc1b3fbaf643dfd02c0618ee (diff)
Add stable/2402 branch and remove stable/2306 branch to docker executor image scripts
- Refactor csit_pip_cache function to use csit bash functions that activate the python virtualenv in production jobs. - Remove stable/2306 branch due to pip issue https://github.com/pypa/pip/issues/11527 causing extraneous downloading of pip wheels in CSIT jobs. - Remove installation of packages for old CSIT docs generation. Change-Id: Ib63aa654a35ad01fbfb5b7f593d3f8ffa6499b07 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'docker/scripts/dbld_csit_install_packages.sh')
-rwxr-xr-xdocker/scripts/dbld_csit_install_packages.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/docker/scripts/dbld_csit_install_packages.sh b/docker/scripts/dbld_csit_install_packages.sh
index d8ce597fb..e303ce28e 100755
--- a/docker/scripts/dbld_csit_install_packages.sh
+++ b/docker/scripts/dbld_csit_install_packages.sh
@@ -42,7 +42,19 @@ for vpp_branch in ${VPP_BRANCHES[$OS_NAME]} ; do
csit_install_packages "$csit_branch"
# Install/cache python packages
+ csit_install_hugo "$csit_branch"
+
+ # Install/cache python packages
csit_pip_cache "$csit_branch"
done
+# Install csit OS packages
+csit_install_packages "master"
+
+# Install/cache python packages
+csit_install_hugo "master"
+
+# Install/cache python packages
+csit_pip_cache "master"
+
echo_log -e "Completed $(basename $0)!\n\n=========="