blob: bd1c2f888ade7c858368932da4f50a51ebe8ec20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
export TEST_TAG="PERFTEST_${TYPE^^}"
# execute csit bootstrap script if it exists
if [ ! -e bootstrap-verify-perf-ligato.sh ]
then
echo 'ERROR: No bootstrap-verify-perf-ligato.sh found'
exit 1
fi
# make sure that bootstrap-verify-perf-ligato.sh is executable
chmod +x bootstrap-verify-perf-ligato.sh
# get commit ID from name of stable ver
VPP_BUILD_COMMIT="$( expr match `cat VPP_STABLE_VER_UBUNTU` '.*g\(.*\)~.*' )"
# run the script
./bootstrap-verify-perf-ligato.sh ${VPP_BUILD_COMMIT}
# vim: ts=4 ts=4 sts=4 et :
|