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