summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-ligato-perf-hw.sh
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2018-08-03 09:52:50 +0000
committerPeter Mikus <pmikus@cisco.com>2018-08-10 15:59:32 +0000
commit263247c552883c1867ebeb927a4babf2932bfabe (patch)
treece1e10088ce0324b325134dc44e0d5cabde14d43 /jjb/csit/include-raw-csit-ligato-perf-hw.sh
parent7a48620e96279ae99c2978bfd8e02bfc54e99d85 (diff)
CSIT-1193 Update of perf jobs
- Unify the bootstraps - Cleanup old jobs - Cleanup old branches - Add weekly NDRPDR jobs Change-Id: Icc1ad1fe002d9409e5fcd6e4aa0b674def07724e Signed-off-by: Peter Mikus <pmikus@cisco.com>
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 :