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