Use make verify only after its working and not for CSIT builds.
[ci-management.git] / jjb / csit / include-raw-csit-hc2vpp-functional-virl.sh
1 #!/bin/bash
2
3 # execute csit bootstrap script if it exists
4 if [ ! -e bootstrap-vpp-honeycomb.sh ]
5 then
6     echo 'ERROR: No bootstrap-vpp-honeycomb.sh found'
7     exit 1
8 else
9     # make sure that bootstrap.sh is executable
10     chmod +x bootstrap-vpp-honeycomb.sh
11     # run the script
12     ./bootstrap-vpp-honeycomb.sh
13 fi
14
15 # vim: ts=4 ts=4 sts=4 et :