summaryrefslogtreecommitdiffstats
path: root/jjb/nsh_sfc/include-raw-nsh_sfc-csit-perf-hw.sh
diff options
context:
space:
mode:
authorVanessa Rene Valderrama <vvalderrama@linuxfoundation.org>2020-09-17 13:36:57 -0500
committerVanessa Rene Valderrama <vvalderrama@linuxfoundation.org>2020-09-17 13:36:57 -0500
commit267bc842d8c627fd651135d5df55b5d1c4401b50 (patch)
treea1fc67a26c7013b01f695dab95aa6b100956733b /jjb/nsh_sfc/include-raw-nsh_sfc-csit-perf-hw.sh
parentab3c0c92ba98a906f36f61c5dd6520c78aed81c3 (diff)
Remove NSH_SFC jobs
The TSC has approved the NSH_SFC project for archive. This change is to remove the NSH_SFC jobs. Signed-off-by: Vanessa Rene Valderrama <vvalderrama@linuxfoundation.org> Change-Id: Icf4b306d062971b21544444b2d238b3cc94dc01e
Diffstat (limited to 'jjb/nsh_sfc/include-raw-nsh_sfc-csit-perf-hw.sh')
-rw-r--r--jjb/nsh_sfc/include-raw-nsh_sfc-csit-perf-hw.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/jjb/nsh_sfc/include-raw-nsh_sfc-csit-perf-hw.sh b/jjb/nsh_sfc/include-raw-nsh_sfc-csit-perf-hw.sh
deleted file mode 100644
index 98b1d070e..000000000
--- a/jjb/nsh_sfc/include-raw-nsh_sfc-csit-perf-hw.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-set -xeu -o pipefail
-
-# Clone csit and start tests
-git clone https://gerrit.fd.io/r/csit
-
-# If the git clone fails, complain clearly and exit
-if [ $? != 0 ]; then
- echo "Failed to run: git clone https://gerrit.fd.io/r/csit"
- exit 1
-fi
-
-cd csit
-
-# execute nsh_sfc bootstrap script if it exists
-if [ ! -e bootstrap-verify-perf-nsh_sfc.sh ]
-then
- echo 'ERROR: No bootstrap-verify-perf-nsh_sfc.sh found'
- exit 1
-fi
-
-# make sure that bootstrap-verify-perf.sh is executable
-chmod +x bootstrap-verify-perf-nsh_sfc.sh
-# run the script
-./bootstrap-verify-perf-nsh_sfc.sh
-
-# vim: ts=4 ts=4 sts=4 et :