-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild_matrix.sh
executable file
·63 lines (60 loc) · 2.2 KB
/
build_matrix.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
#!/bin/sh -e
# This script executes the matrix loop, exclude tests and cleaning.
# The matrix can be configured with the following environment variables:
: "${MATRIX_CC:=gcc clang}"
: "${MATRIX_BUILD_LIBPCAP:=yes no}"
# Set this variable to "yes" before calling this script to disregard all
# warnings in a particular environment (CI or a local working copy). Set it to
# "yes" in this script or in build.sh when a matrix subset is known to be not
# warning-free because of the OS, the compiler or whatever other factor that
# the scripts can detect both in and out of CI.
: "${TCPSLICE_TAINTED:=no}"
# Some OSes have native make without parallel jobs support and sometimes have
# GNU Make available as "gmake".
: "${MAKE_BIN:=make}"
# It calls the build.sh script which runs one build with the setup environment
# variable CC.
. ./build_common.sh
print_sysinfo
# Install directory prefix
if [ -z "$PREFIX" ]; then
PREFIX=`mktempdir tcpslice_build_matrix`
echo "PREFIX set to '$PREFIX'"
export PREFIX
fi
COUNT=0
export TCPSLICE_TAINTED
export MAKE_BIN
run_after_echo git show --oneline -s | cat
touch .devel
for CC in $MATRIX_CC; do
export CC
discard_cc_cache
if gcc_is_clang_in_disguise; then
echo '(skipped)'
continue
fi
for BUILD_LIBPCAP in $MATRIX_BUILD_LIBPCAP; do
COUNT=`increment "$COUNT"`
echo_magenta "===== SETUP $COUNT: CC=$CC BUILD_LIBPCAP=$BUILD_LIBPCAP =====" >&2
if [ "$BUILD_LIBPCAP" = yes ]; then
echo_magenta "Build libpcap (CMAKE=no)" >&2
(cd ../libpcap && CMAKE=no ./build.sh)
else
echo_magenta 'Use system libpcap' >&2
purge_directory "$PREFIX"
if [ -d ../libpcap ]; then
(cd ../libpcap; "$MAKE_BIN" distclean || echo '(Ignoring the make error.)')
fi
fi
# Run one build with the setup environment variable: CC
run_after_echo ./build.sh
echo 'Cleaning...'
"$MAKE_BIN" distclean
purge_directory "$PREFIX"
run_after_echo git status -suall
done
done
run_after_echo rm -rf "$PREFIX"
echo_magenta "Tested setup count: $COUNT" >&2
# vi: set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab autoindent :