Add CSIT verify jobs for Honeycomb tests
[ci-management.git] / jjb / csit / include-raw-csit-hc2vpp-verify-func.sh
1 #!/bin/bash
2
3 # execute csit bootstrap script if it exists
4 if [ ! -e bootstrap-hc2vpp-integration.sh ]
5 then
6     echo 'ERROR: No bootstrap-hc2vpp-integration.sh found'
7     exit 1
8 else
9     # make sure that bootstrap.sh is executable
10     chmod +x bootstrap-hc2vpp-integration.sh
11     # run the script
12     if [ ${STREAM} == 'master' ]; then
13         ./bootstrap-hc2vpp-integration.sh ${STREAM} ${OS}
14     else
15         ./bootstrap-hc2vpp-integration.sh 'stable.'${STREAM} ${OS}
16     fi
17 fi
18
19 # vim: ts=4 ts=4 sts=4 et :