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