Replace obsolete bootstrap file
[ci-management.git] / jjb / csit / include-raw-csit-vpp-verify-weekly.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 --branch master
6
7 cd csit
8
9 # execute csit bootstrap script if it exists
10 if [ -e bootstrap-vpp-verify-weekly.sh ]
11 then
12     # make sure that bootstrap.sh is executable
13     chmod +x bootstrap-vpp-verify-weekly.sh
14     # run the script
15     ./bootstrap-vpp-verify-weekly.sh
16 else
17     echo 'ERROR: No bootstrap-verify-master.sh found'
18     exit 1
19 fi
20
21 # vim: ts=4 ts=4 sts=4 et :