This repository has been archived by the owner on Jun 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
/
ci_build.sh
executable file
·85 lines (71 loc) · 2.5 KB
/
ci_build.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
#!/usr/bin/env bash
#
# This script is used by travis ci to test updates for zproject itself:
# it builds a latest GSL, then zproject, and tests it by regenerating
# a stable consumer project (CZMQ) which is expected to pass well.
# Optionally speeds up the compilation steps using ccache (stashed).
#
set -e
# Set this to enable verbose profiling
[ -n "${CI_TIME-}" ] || CI_TIME=""
case "$CI_TIME" in
[Yy][Ee][Ss]|[Oo][Nn]|[Tt][Rr][Uu][Ee])
CI_TIME="time -p " ;;
[Nn][Oo]|[Oo][Ff][Ff]|[Ff][Aa][Ll][Ss][Ee])
CI_TIME="" ;;
esac
# Set this to enable verbose tracing
[ -n "${CI_TRACE-}" ] || CI_TRACE="no"
case "$CI_TRACE" in
[Nn][Oo]|[Oo][Ff][Ff]|[Ff][Aa][Ll][Ss][Ee])
set +x ;;
[Yy][Ee][Ss]|[Oo][Nn]|[Tt][Rr][Uu][Ee])
set -x ;;
esac
case "$BUILD_TYPE" in
"default"|"with-pcre")
mkdir tmp
BUILD_PREFIX="$PWD/tmp"
CCACHE_PATH="$PATH"
CCACHE_DIR="${HOME}/.ccache"
export CCACHE_PATH CCACHE_DIR
# ccache -s 2>/dev/null || true
if [ "$BUILD_TYPE" = with-pcre ]; then
[ -z "$CI_TIME" ] || echo "`date`: Starting build of bundled pcre..."
( cd ./pcre && \
CCACHE_BASEDIR=${PWD} && \
export CCACHE_BASEDIR && \
$CI_TIME make -j4 && \
DESTDIR="${BUILD_PREFIX}" $CI_TIME make install \
) || exit 1
fi
[ -z "$CI_TIME" ] || echo "`date`: Starting build of gsl..."
( EXTRA_MAKE_OPTS=""
[ "$BUILD_TYPE" = with-pcre ] \
&& { EXTRA_MAKE_OPTS=CCLIBS="../pcre/libpcre.a" && \
echo "Using bundled PCRE libs as a static built-in"; } \
|| echo "Using system-provided PCRE libs"
cd ./src && \
CCACHE_BASEDIR=${PWD} && \
export CCACHE_BASEDIR && \
$CI_TIME make $EXTRA_MAKE_OPTS -j4 && \
DESTDIR="${BUILD_PREFIX}" $CI_TIME make $EXTRA_MAKE_OPTS install \
) || exit 1
[ -z "$CI_TIME" ] || echo "`date`: Builds completed without fatal errors!"
echo "=== What is the GSL binary linked against (note libpcre in particular)?"
ldd src/gsl || true
echo "=== Self-test GSL parser"
(cd src && $CI_TIME make check) || exit $?
echo "=== How well did ccache help on this platform?"
ccache -s 2>/dev/null || true
echo "==="
;;
*)
pushd "./builds/${BUILD_TYPE}" && \
REPO_DIR="$(dirs -l +1)" $CI_TIME ./ci_build.sh \
|| exit 1
;;
esac
echo "=== Are GitIgnores good after making zproject '$BUILD_TYPE'? (should have no output below)"
git status -s || true
echo "==="