-
Notifications
You must be signed in to change notification settings - Fork 14
/
test_ci.sh
executable file
·103 lines (80 loc) · 2.37 KB
/
test_ci.sh
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/bin/bash
export VAGRANT_DIR="${VAGRANT_DIR:-$(pwd)/buildspec}"
export DEVKIT_DIR="${DEVKIT_DIR:-$(pwd)/devkit}"
export SARK_DIR="${SARK_DIR:-$(pwd)/sark}"
export PRETEND=1
export QA_CHECKS=1
export DOCKER_COMMIT_IMAGE=${DOCKER_COMMIT_IMAGE:-false}
export COMMIT_RANGE="${1}"
# If given in a github form, it will be extracted commit range
if [[ $COMMIT_RANGE == *https://* ]]; then
echo "Extracting commit range"
COMMIT_RANGE=$(echo $COMMIT_RANGE | rev | cut -d / -f 1 | rev)
fi
COMMIT_RANGE=${COMMIT_RANGE/.../..}
echo "Range: $COMMIT_RANGE"
SPECFILE=($(git diff-tree --name-status -r --no-commit-id ${COMMIT_RANGE} | awk "{print \$2 }")) #Get build.yaml changed
# install required deps
pip install shyaml
if [ -d ${DEVKIT_DIR} ]; then
pushd ${DEVKIT_DIR}
git fetch --all
git reset --hard origin/master
popd
else
git clone https://github.com/Sabayon/devkit.git ${DEVKIT_DIR} || exit 1
fi
pushd ${DEVKIT_DIR}
make
make install
popd
if [ -d ${SARK_DIR} ]; then
pushd ${SARK_DIR}
git fetch --all
git reset --hard origin/master
popd
else
git clone https://github.com/Sabayon/sabayon-sark ${SARK_DIR} || exit 1
fi
pushd ${SARK_DIR}
make
make install
popd
if [ -d ${VAGRANT_DIR} ]; then
pushd ${VAGRANT_DIR}
git fetch --all
git reset --hard origin/master
popd
else
git clone https://github.com/Sabayon/community-buildspec.git ${VAGRANT_DIR} || exit 1
fi
. /sbin/sark-functions.sh
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "Changed files:"
for i in "${SPECFILE[@]}"
do
:
echo " ----> ${i}"
done
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
for i in "${SPECFILE[@]}"
do
:
IFS='/' read -r -a repo_name <<< "$i"
export REPOSITORY_NAME=${repo_name[0]}
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "[${REPOSITORY_NAME}]: ${i}"
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
if [ -e "$REPOSITORY_NAME/build.yaml" ]; then
pushd "$REPOSITORY_NAME"
load_env_from_yaml build.yaml
# Debug what env vars are being passed to the builder
printenv | sort
build_all ${BUILD_ARGS}
popd
fi
done