summaryrefslogtreecommitdiffstats
path: root/jjb/scripts
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2021-10-06 12:22:15 -0400
committerDave Wallace <dwallacelf@gmail.com>2021-10-27 10:30:54 -0400
commitbff58fc0cc0b9d60e20c5eecf774cb82a1e71b08 (patch)
tree55bce429af7597f186b07beec852fae1e32f6804 /jjb/scripts
parent31635358ab5dca1434a82548ba9ae8235441f378 (diff)
Remove deprecated releases/os jobs for VPP 21.10
- Deprecated release: VPP stable/2009, stable/2101 - Deprecated OS: centos-7, debian-9 Change-Id: If3ca0f249210946321f6e867a933b05f19f58865 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'jjb/scripts')
-rwxr-xr-xjjb/scripts/post_build_executor_info.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/jjb/scripts/post_build_executor_info.sh b/jjb/scripts/post_build_executor_info.sh
index fef79814e..f98666676 100755
--- a/jjb/scripts/post_build_executor_info.sh
+++ b/jjb/scripts/post_build_executor_info.sh
@@ -45,14 +45,3 @@ if [ -n "$(which ccache)" ] ; then
fi
echo "$long_line"
-
-# Avoid sar anomaly on centos-7 in global-jjb/shell/logs-deploy.sh
-#
-# Note: VPP 20.09 will be removed in the next release cycle (21.10),
-# therefore this hack is better than polluting the docker image
-# build scripts with code to avoid installing sysstat on centos-7.
-#
-# TODO: Remove when vpp-*-2009-centos7-x86_64 jobs are removed
-if [ "$OS_ID" = "centos" ] && [ "$OS_VERSION_ID" = "7" ] ; then
- sudo yum remove -y sysstat >& /dev/null || true
-fi