blob: c0c19b32390d3cce1e4c87edab07b1a7030be4ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/bin/bash
set -xeu -o pipefail
# check BRANCH_ID value
if [ "$BRANCH_ID" == "" ]; then
echo "branch_id not provided => 'master' will be used"
BRANCH_ID="master"
fi
# clone csit
git clone --depth 1 --no-single-branch https://gerrit.fd.io/r/csit
# if the git clone fails, complain clearly and exit
if [ $? != 0 ]; then
echo "Failed to run: git clone --depth 1 --no-single-branch https://gerrit.fd.io/r/csit"
exit 1
fi
cd csit
# get the latest verified version of the required branch
BRANCH_NAME=$(echo $(git branch -r | grep -E "${BRANCH_ID}-[0-9]+" | tail -n 1))
if [ "${BRANCH_NAME}" == "" ]; then
echo "No verified version found for requested branch - exiting"
exit 1
fi
# remove 'origin/' from the branch name
BRANCH_NAME=$(echo ${BRANCH_NAME#origin/})
# checkout to the required branch
git checkout ${BRANCH_NAME}
# execute csit bootstrap script if it exists
if [ -e bootstrap-vpp-verify-semiweekly.sh ]
then
# make sure that bootstrap.sh is executable
chmod +x bootstrap-vpp-verify-semiweekly.sh
# run the script
./bootstrap-vpp-verify-semiweekly.sh
else
echo 'ERROR: No bootstrap-vpp-verify-semiweekly.sh found'
exit 1
fi
# vim: ts=4 ts=4 sts=4 et :
|