summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-ligato-perf-hw.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/csit/include-raw-csit-ligato-perf-hw.sh')
-rw-r--r--jjb/csit/include-raw-csit-ligato-perf-hw.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/jjb/csit/include-raw-csit-ligato-perf-hw.sh b/jjb/csit/include-raw-csit-ligato-perf-hw.sh
deleted file mode 100644
index bd1c2f888..000000000
--- a/jjb/csit/include-raw-csit-ligato-perf-hw.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-export TEST_TAG="PERFTEST_${TYPE^^}"
-
-# execute csit bootstrap script if it exists
-if [ ! -e bootstrap-verify-perf-ligato.sh ]
-then
- echo 'ERROR: No bootstrap-verify-perf-ligato.sh found'
- exit 1
-fi
-
-# make sure that bootstrap-verify-perf-ligato.sh is executable
-chmod +x bootstrap-verify-perf-ligato.sh
-
-# get commit ID from name of stable ver
-VPP_BUILD_COMMIT="$( expr match `cat VPP_STABLE_VER_UBUNTU` '.*g\(.*\)~.*' )"
-
-# run the script
-./bootstrap-verify-perf-ligato.sh ${VPP_BUILD_COMMIT}
-
-# vim: ts=4 ts=4 sts=4 et :