Merge pull request #48 from frdeso/add_executed_test_suite_in_desc
[lttng-ci.git] / scripts / lttng-tools / build.sh
CommitLineData
3c85b52d 1#!/bin/bash -exu
b4005bbf 2#
3c85b52d 3# Copyright (C) 2016 - Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
b4005bbf
MJ
4# Michael Jeanson <mjeanson@efficios.com>
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
0cdaa21c 19# Version compare functions
b6e62a6a
MJ
20vercomp () {
21 set +u
22 if [[ "$1" == "$2" ]]; then
23 return 0
24 fi
25 local IFS=.
26 local i ver1=($1) ver2=($2)
27 # fill empty fields in ver1 with zeros
28 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
29 ver1[i]=0
30 done
31 for ((i=0; i<${#ver1[@]}; i++)); do
32 if [[ -z ${ver2[i]} ]]; then
33 # fill empty fields in ver2 with zeros
34 ver2[i]=0
35 fi
36 if ((10#${ver1[i]} > 10#${ver2[i]})); then
37 return 1
38 fi
39 if ((10#${ver1[i]} < 10#${ver2[i]})); then
40 return 2
41 fi
42 done
43 set -u
44 return 0
45}
46
0cdaa21c 47verlte() {
b6e62a6a
MJ
48 vercomp "$1" "$2"; local res="$?"
49 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
0cdaa21c
MJ
50}
51
52verlt() {
b6e62a6a
MJ
53 vercomp "$1" "$2"; local res="$?"
54 [ "$res" -eq "2" ]
0cdaa21c
MJ
55}
56
57vergte() {
b6e62a6a
MJ
58 vercomp "$1" "$2"; local res="$?"
59 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
0cdaa21c
MJ
60}
61
62vergt() {
b6e62a6a
MJ
63 vercomp "$1" "$2"; local res="$?"
64 [ "$res" -eq "1" ]
65}
66
67verne() {
68 vercomp "$1" "$2"; local res="$?"
69 [ "$res" -ne "0" ]
0cdaa21c
MJ
70}
71
212d2afd
MJ
72# Required parameters
73arch=${arch:-}
74conf=${conf:-}
75build=${build:-}
b4005bbf 76
212d2afd 77SRCDIR="$WORKSPACE/src/lttng-tools"
67122b96 78#TMPDIR="$WORKSPACE/tmp"
212d2afd
MJ
79PREFIX="$WORKSPACE/build"
80TAPDIR="$WORKSPACE/tap"
81
82
83# Create build and tmp directories
67122b96
MJ
84rm -rf "$PREFIX" "$TAPDIR"
85mkdir -p "$PREFIX" "$TAPDIR"
212d2afd 86
67122b96 87#export TMPDIR
72d087d4 88CFLAGS="-g -O2"
b4005bbf
MJ
89
90# liburcu
91URCU_INCS="$WORKSPACE/deps/liburcu/build/include/"
92URCU_LIBS="$WORKSPACE/deps/liburcu/build/lib/"
93
94# lttng-ust
95UST_INCS="$WORKSPACE/deps/lttng-ust/build/include/"
96UST_LIBS="$WORKSPACE/deps/lttng-ust/build/lib/"
95654431 97UST_JAVA="$WORKSPACE/deps/lttng-ust/build/share/java/"
b4005bbf
MJ
98
99# babeltrace
212d2afd 100#BABEL_INCS="$WORKSPACE/deps/babeltrace/build/include/"
b4005bbf
MJ
101BABEL_LIBS="$WORKSPACE/deps/babeltrace/build/lib/"
102BABEL_BINS="$WORKSPACE/deps/babeltrace/build/bin/"
103
b4005bbf 104
0cdaa21c
MJ
105# Set platform variables
106case "$arch" in
995ac8f2 107sol10-i386)
0cdaa21c
MJ
108 MAKE=gmake
109 TAR=gtar
110 NPROC=gnproc
111 BISON="bison"
112 YACC="$BISON -y"
a717a532 113 CFLAGS="${CFLAGS:-} -D_XOPEN_SOURCE=500"
0cdaa21c 114 RUN_TESTS="no"
ad11244c
MJ
115
116 export PATH="/opt/csw/bin:/usr/ccs/bin:$PATH"
0cdaa21c
MJ
117 ;;
118
995ac8f2 119sol11-i386)
0cdaa21c
MJ
120 MAKE=gmake
121 TAR=gtar
122 NPROC=nproc
cd808c9e 123 BISON="bison"
0cdaa21c 124 YACC="$BISON -y"
a717a532 125 CFLAGS="${CFLAGS:-} -D_XOPEN_SOURCE=500"
0cdaa21c
MJ
126 RUN_TESTS="no"
127
128 export PATH="$PATH:/usr/perl5/bin"
a717a532 129 CPPFLAGS="-I/opt/csw/include"
67acca04 130 LDFLAGS="-L/opt/csw/lib"
0cdaa21c
MJ
131 ;;
132
b6e62a6a
MJ
133macosx)
134 MAKE=make
135 TAR=tar
136 NPROC="getconf _NPROCESSORS_ONLN"
137 BISON="bison"
138 YACC="$BISON -y"
139 RUN_TESTS="no"
140
141 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
a717a532 142 CPPFLAGS="-I/opt/local/include"
e6a2206f 143 LDFLAGS="-L/opt/local/lib"
b6e62a6a
MJ
144 ;;
145
61afb3c3
MJ
146cygwin|cygwin64|msys32|msys64)
147 MAKE=make
148 TAR=tar
149 NPROC=nproc
150 BISON="bison"
151 YACC="$BISON -y"
72d087d4 152 #CFLAGS=""
61afb3c3
MJ
153 RUN_TESTS="no"
154 ;;
155
0cdaa21c
MJ
156*)
157 MAKE=make
158 TAR=tar
159 NPROC=nproc
160 BISON="bison"
161 YACC="$BISON -y"
72d087d4 162 #CFLAGS=""
0cdaa21c
MJ
163 RUN_TESTS="yes"
164
165 PYTHON2=python2
166 PYTHON3=python3
167
168 P2_VERSION=$($PYTHON2 -c "import sys;print(sys.version[:3])")
169 P3_VERSION=$($PYTHON3 -c "import sys;print(sys.version[:3])")
170
171 UST_PYTHON2="$WORKSPACE/deps/lttng-ust/build/lib/python$P2_VERSION/site-packages"
172 UST_PYTHON3="$WORKSPACE/deps/lttng-ust/build/lib/python$P3_VERSION/site-packages"
173 ;;
174esac
175
176
212d2afd
MJ
177# Enter the source directory
178cd "$SRCDIR"
179
180# Run bootstrap in the source directory prior to configure
0cdaa21c
MJ
181./bootstrap
182
183# Get source version from configure script
212d2afd
MJ
184eval "$(grep '^PACKAGE_VERSION=' ./configure)"
185PACKAGE_VERSION=$(echo "$PACKAGE_VERSION"| sed 's/\-pre$//')
0cdaa21c
MJ
186
187
188# Export build flags
189case "$conf" in
190no-ust)
e6a2206f
JR
191 CPPFLAGS="${CPPFLAGS:-} -I$URCU_INCS"
192 LDFLAGS="${LDFLAGS:-} -L$URCU_LIBS"
b4005bbf 193 export LD_LIBRARY_PATH="$URCU_LIBS:$BABEL_LIBS:${LD_LIBRARY_PATH:-}"
0cdaa21c
MJ
194 ;;
195
196*)
e6a2206f
JR
197 CPPFLAGS="${CPPFLAGS:-} -I$URCU_INCS -I$UST_INCS"
198 LDFLAGS="${LDFLAGS:-} -L$URCU_LIBS -L$UST_LIBS"
b4005bbf 199 export LD_LIBRARY_PATH="$URCU_LIBS:$UST_LIBS:$BABEL_LIBS:${LD_LIBRARY_PATH:-}"
0cdaa21c
MJ
200 ;;
201esac
b4005bbf 202
0cdaa21c
MJ
203# The switch to build without UST changed in 2.8
204if vergte "$PACKAGE_VERSION" "2.8"; then
205 NO_UST="--without-lttng-ust"
206else
207 NO_UST="--disable-lttng-ust"
208fi
b4005bbf 209
6c3ec80e
MJ
210# Most build configs require the python bindings
211CONF_OPTS="--enable-python-bindings"
212export PYTHON="python3"
213export PYTHON_CONFIG="/usr/bin/python3-config"
214
0cdaa21c 215# Set configure options for each build configuration
b4005bbf 216case "$conf" in
0cdaa21c
MJ
217static)
218 echo "Static build"
6c3ec80e 219 CONF_OPTS+=" --enable-static --disable-shared"
0cdaa21c
MJ
220 ;;
221
0cdaa21c
MJ
222no-ust)
223 echo "Build without UST support"
6c3ec80e 224 CONF_OPTS+=" $NO_UST"
0cdaa21c
MJ
225 ;;
226
67122b96
MJ
227agents)
228 echo "Enable Java Agents"
0cdaa21c
MJ
229 export JAVA_HOME="/usr/lib/jvm/default-java"
230 export CLASSPATH="$UST_JAVA/*:/usr/share/java/*"
67122b96 231 CONF_OPTS+=" --enable-test-java-agent-all"
0cdaa21c 232
67122b96 233 echo "Enable Python agents"
0cdaa21c 234 export PYTHONPATH="$UST_PYTHON2:$UST_PYTHON3"
67122b96 235 CONF_OPTS+=" --enable-test-python-agent-all"
0cdaa21c
MJ
236 ;;
237
238relayd-only)
239 echo "Build relayd only"
b6e62a6a 240 CONF_OPTS="--disable-bin-lttng --disable-bin-lttng-consumerd --disable-bin-lttng-crash --disable-bin-lttng-sessiond --disable-extras --disable-man-pages $NO_UST"
0cdaa21c
MJ
241 ;;
242
22780fe6
JR
243debug-rcu)
244 echo "Enable RCU sanity checks for debugging"
245 CPPFLAGS="${CPPFLAGS:-} -DDEBUG_RCU"
246 ;;
247
0cdaa21c
MJ
248*)
249 echo "Standard build"
0cdaa21c 250 ;;
b4005bbf
MJ
251esac
252
0cdaa21c 253
b4005bbf 254# Build type
67122b96
MJ
255# oot : out-of-tree build
256# dist : build via make dist
257# oot-dist: build via make dist out-of-tree
258# * : normal tree build
b4005bbf 259#
0cdaa21c 260# Make sure to move to the build_path and run configure
b4005bbf 261# before continuing
212d2afd 262BUILD_PATH=$SRCDIR
b4005bbf 263case "$build" in
95654431
MJ
264 oot)
265 echo "Out of tree build"
266 BUILD_PATH=$WORKSPACE/oot
b6e62a6a
MJ
267 mkdir -p "$BUILD_PATH"
268 cd "$BUILD_PATH"
e6a2206f 269 MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS
95654431
MJ
270 ;;
271
272 dist)
67122b96 273 echo "Distribution tarball in-tree build"
95654431
MJ
274
275 # Initial configure and generate tarball
e6a2206f 276 MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" "$SRCDIR/configure" $CONF_OPTS --enable-build-man-pages
0cdaa21c 277 $MAKE dist
95654431 278
67122b96 279 BUILD_PATH="$(mktemp -d)"
b6e62a6a
MJ
280 cp ./*.tar.* "$BUILD_PATH/"
281 cd "$BUILD_PATH"
95654431
MJ
282
283 # Ignore level 1 of tar
b6e62a6a 284 $TAR xvf ./*.tar.* --strip 1
95654431 285
67122b96 286 # Build in extracted source tree
e6a2206f 287 MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
95654431
MJ
288 ;;
289
67122b96
MJ
290 oot-dist)
291 echo "Distribution tarball out of tree build"
292 BUILD_PATH="$(mktemp -d)"
293 cd "$BUILD_PATH"
294
295 # Initial configure and generate tarball
e6a2206f 296 MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" "$SRCDIR/configure" $CONF_OPTS --enable-build-man-pages
67122b96
MJ
297 $MAKE dist
298
299 NEWSRC_PATH="$(mktemp -d)"
300 cp ./*.tar.* "$NEWSRC_PATH/"
301 cd "$NEWSRC_PATH"
302
303 # Ignore level 1 of tar
304 $TAR xvf ./*.tar.* --strip 1
305
306 BUILD_PATH="$(mktemp -d)"
307 cd "$BUILD_PATH"
308
309 # Build oot from extracted sources
e6a2206f 310 MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" "$NEWSRC_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
67122b96
MJ
311 ;;
312
95654431 313 *)
95654431 314 echo "Standard tree build"
e6a2206f 315 MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
95654431 316 ;;
b4005bbf
MJ
317esac
318
0cdaa21c 319# BUILD!
212d2afd 320$MAKE -j "$($NPROC)" V=1
0cdaa21c 321$MAKE install
b4005bbf
MJ
322
323# Run tests
0cdaa21c 324if [ "$RUN_TESTS" = "yes" ]; then
212d2afd 325 cd tests || exit 1
7671741c 326
0cdaa21c
MJ
327 # Allow core dumps
328 ulimit -c unlimited
329
330 # Add 'babeltrace' binary to PATH
7671741c 331 chmod +x "$BABEL_BINS/babeltrace"
0cdaa21c
MJ
332 export PATH="$PATH:$BABEL_BINS"
333
334 # Prepare tap output dirs
212d2afd
MJ
335 rm -rf "$TAPDIR"
336 mkdir -p "$TAPDIR"
337 mkdir -p "$TAPDIR/unit"
338 mkdir -p "$TAPDIR/fast_regression"
339 mkdir -p "$TAPDIR/with_bindings_regression"
0cdaa21c 340
a4e98cc0
JR
341 # Force the lttng-sessiond path to /bin/true to prevent the spawing of a
342 # lttng-sessiond --daemonize on "lttng create"
343 export LTTNG_SESSIOND_PATH="/bin/true"
344
0cdaa21c
MJ
345 # Run 'unit_tests' and 'fast_regression' test suites for all configs except 'no-ust'
346 if [ "$conf" != "no-ust" ]; then
3c85b52d
MJ
347 # Run 'unit_tests', 2.8 and up has a new test suite
348 if vergte "$PACKAGE_VERSION" "2.8"; then
6827c67a 349 make --keep-going check
212d2afd 350 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*'" $BUILD_PATH/tests/" "$TAPDIR"
3c85b52d 351 else
212d2afd
MJ
352 prove --merge -v --exec '' - < "$BUILD_PATH/tests/unit_tests" --archive "$TAPDIR/unit/" || true
353 prove --merge -v --exec '' - < "$BUILD_PATH/tests/fast_regression" --archive "$TAPDIR/fast_regression/" || true
6c3ec80e 354 prove --merge -v --exec '' - < "$BUILD_PATH/tests/with_bindings_regression" --archive "$TAPDIR/with_bindings_regression/" || true
3c85b52d 355 fi
0cdaa21c
MJ
356 else
357 # Regression is disabled for now, we need to adjust the testsuite for no ust builds.
3c85b52d 358 echo "Tests disabled for 'no-ust'."
0cdaa21c
MJ
359 fi
360
0cdaa21c 361 # TAP plugin is having a hard time with .yml files.
212d2afd 362 find "$TAPDIR" -name "meta.yml" -exec rm -f {} \;
0cdaa21c
MJ
363
364 # And also with files without extension, so rename all result to *.tap
212d2afd 365 find "$TAPDIR/" -type f -exec mv {} {}.tap \;
7671741c
MJ
366
367 cd -
b4005bbf
MJ
368fi
369
b4005bbf 370# Cleanup
0cdaa21c 371$MAKE clean
b4005bbf 372
0cdaa21c 373# Cleanup rpath in executables and shared libraries
212d2afd
MJ
374find "$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
375find "$PREFIX/lib" -name "*.so" -exec chrpath --delete {} \;
0cdaa21c
MJ
376
377# Remove libtool .la files
212d2afd 378find "$PREFIX/lib" -name "*.la" -exec rm -f {} \;
b4005bbf
MJ
379
380# Clean temp dir for dist build
0cdaa21c 381if [ "$build" = "dist" ]; then
212d2afd 382 cd "$SRCDIR"
7671741c 383 rm -rf "$BUILD_PATH"
b4005bbf 384fi
95654431
MJ
385
386# EOF
This page took 0.04229 seconds and 4 git commands to generate.