Change performance job name
[ci-management.git] / jjb / vpp / include-raw-vpp-csit-verify-perf.sh
1 #!/bin/bash
2 set -xeu -o pipefail
3
4 export TEST_TAG="PERFTEST_${TYPE^^}"
5
6 # Clone csit and start tests
7 git clone --depth 1 https://gerrit.fd.io/r/csit --branch csit-verified
8
9 cp build-root/*.deb csit/
10 cd csit
11 # execute csit bootstrap script if it exists
12 if [ ! -e bootstrap-verify-perf.sh ]
13 then
14     echo 'ERROR: No bootstrap-verify-perf.sh found'
15     exit 1
16 fi
17
18 # make sure that bootstrap-verify-perf.sh is executable
19 chmod +x bootstrap-verify-perf.sh
20 # run the script
21 ./bootstrap-verify-perf.sh *.deb
22
23 # vim: ts=4 ts=4 sts=4 et :