Merge "Modify logs publisher"
[ci-management.git] / jjb / csit / include-raw-csit-hc2vpp-verify-perf.sh
1 #!/bin/bash
2
3 # execute csit bootstrap script if it exists
4 if [[ ! -e bootstrap-hc2vpp-perf.sh ]]
5 then
6     echo 'ERROR: No bootstrap-hc2vpp-perf.sh found'
7     exit 1
8 else
9     # make sure that bootstrap.sh is executable
10     chmod +x bootstrap-hc2vpp-perf.sh
11     # run the script
12     ./bootstrap-hc2vpp-perf.sh ${STREAM} ${OS}
13 fi
14
15 # vim: ts=4 ts=4 sts=4 et :