blob: f24692de9c7b5631c8bcbbf765b060399a5d2497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
set -xeu -o pipefail
export TEST_TAG="PERFTEST_${TYPE^^}"
# Clone csit and start tests
git clone --depth 1 https://gerrit.fd.io/r/csit --branch csit-verified
cp build-root/*.deb csit/
cd csit
# execute csit bootstrap script if it exists
if [ ! -e bootstrap-verify-perf.sh ]
then
echo 'ERROR: No bootstrap-verify-perf.sh found'
exit 1
fi
# make sure that bootstrap-verify-perf.sh is executable
chmod +x bootstrap-verify-perf.sh
# run the script
./bootstrap-verify-perf.sh *.deb
# vim: ts=4 ts=4 sts=4 et :
|