summaryrefslogtreecommitdiffstats
path: root/jjb/csit/include-raw-csit-vpp-verify-weekly.sh
blob: 3c74c349b3c4bbb17066d20a0c16d1b90a196714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -xeu -o pipefail

# execute csit bootstrap script if it exists
if [ -e bootstrap-vpp-verify-weekly.sh ]
then
    # make sure that bootstrap.sh is executable
    chmod +x bootstrap-vpp-verify-weekly.sh
    # run the script
    ./bootstrap-vpp-verify-weekly.sh
else
    echo 'ERROR: No bootstrap-vpp-verify-weekly.sh found'
    exit 1
fi

# vim: ts=4 ts=4 sts=4 et :