jjb: lttng-tools: Add rootbuild gerrit jobs
[lttng-ci.git] / scripts / lttng-tools / build.sh
CommitLineData
3c85b52d 1#!/bin/bash -exu
09d45745 2# shellcheck disable=SC2103
b4005bbf 3#
09d45745 4# Copyright (C) 2016 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
7361d941 5# Copyright (C) 2016-2020 Michael Jeanson <mjeanson@efficios.com>
b4005bbf
MJ
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
0cdaa21c 20# Version compare functions
b6e62a6a
MJ
21vercomp () {
22 set +u
23 if [[ "$1" == "$2" ]]; then
24 return 0
25 fi
26 local IFS=.
27 local i ver1=($1) ver2=($2)
28 # fill empty fields in ver1 with zeros
29 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
30 ver1[i]=0
31 done
32 for ((i=0; i<${#ver1[@]}; i++)); do
33 if [[ -z ${ver2[i]} ]]; then
34 # fill empty fields in ver2 with zeros
35 ver2[i]=0
36 fi
37 if ((10#${ver1[i]} > 10#${ver2[i]})); then
38 return 1
39 fi
40 if ((10#${ver1[i]} < 10#${ver2[i]})); then
41 return 2
42 fi
43 done
44 set -u
45 return 0
46}
47
0cdaa21c 48verlte() {
b6e62a6a
MJ
49 vercomp "$1" "$2"; local res="$?"
50 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
0cdaa21c
MJ
51}
52
53verlt() {
b6e62a6a
MJ
54 vercomp "$1" "$2"; local res="$?"
55 [ "$res" -eq "2" ]
0cdaa21c
MJ
56}
57
58vergte() {
b6e62a6a
MJ
59 vercomp "$1" "$2"; local res="$?"
60 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
0cdaa21c
MJ
61}
62
63vergt() {
b6e62a6a
MJ
64 vercomp "$1" "$2"; local res="$?"
65 [ "$res" -eq "1" ]
66}
67
68verne() {
69 vercomp "$1" "$2"; local res="$?"
70 [ "$res" -ne "0" ]
0cdaa21c
MJ
71}
72
09d45745
MJ
73# Required variables
74WORKSPACE=${WORKSPACE:-}
75
212d2afd
MJ
76arch=${arch:-}
77conf=${conf:-}
78build=${build:-}
09d45745 79cc=${cc:-}
9699c0e7 80test_type=${test_type:-}
b4005bbf 81
09d45745
MJ
82DEPS_INC="$WORKSPACE/deps/build/include"
83DEPS_LIB="$WORKSPACE/deps/build/lib"
b8bdba8f 84DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
09d45745
MJ
85DEPS_BIN="$WORKSPACE/deps/build/bin"
86DEPS_JAVA="$WORKSPACE/deps/build/share/java"
87
88export PATH="$DEPS_BIN:$PATH"
89export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
b8bdba8f 90export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
09d45745
MJ
91export CPPFLAGS="-I$DEPS_INC"
92export LDFLAGS="-L$DEPS_LIB"
93
212d2afd 94SRCDIR="$WORKSPACE/src/lttng-tools"
212d2afd 95TAPDIR="$WORKSPACE/tap"
09d45745 96PREFIX="/build"
212d2afd
MJ
97
98
09d45745
MJ
99# Create tmp directory
100TMPDIR="$WORKSPACE/tmp"
101mkdir -p "$TMPDIR"
212d2afd 102
09d45745
MJ
103# Use a symlink in /tmp to point to the the tmp directory
104# inside the workspace, this is to work around the path length
105# limit of unix sockets which are created by the test suite.
106tmpdir="$(mktemp)"
107ln -sf "$TMPDIR" "$tmpdir"
108export TMPDIR="$tmpdir"
b4005bbf 109
481eadc8
JR
110# Create a symlink to "babeltrace" when the "babeltrace2" executable is found.
111# This is a temporary workaround until lttng-tools either allows the override of
112# the trace reader in its test suite or that we move to only supporting
113# babeltrace2
114if [ -x "$DEPS_BIN/babeltrace2" ]; then
115 ln -s "$DEPS_BIN/babeltrace2" "$DEPS_BIN/babeltrace"
116fi
117
118# When using babeltrace2 make sure that it finds its plugins and
119# plugin-providers.
120export BABELTRACE_PLUGIN_PATH="$DEPS_LIB/babeltrace2/plugins/"
121export LIBBABELTRACE2_PLUGIN_PROVIDER_DIR="$DEPS_LIB/babeltrace2/plugin-providers/"
122
09d45745 123export CFLAGS="-g -O2"
b4005bbf 124
09d45745
MJ
125# Set compiler variables
126case "$cc" in
127gcc)
128 export CC=gcc
129 export CXX=g++
130 ;;
131gcc-4.8)
132 export CC=gcc-4.8
133 export CXX=g++-4.8
134 ;;
135gcc-5)
136 export CC=gcc-5
137 export CXX=g++-5
138 ;;
139gcc-6)
140 export CC=gcc-6
141 export CXX=g++-6
142 ;;
143gcc-7)
144 export CC=gcc-7
145 export CXX=g++-7
146 ;;
147gcc-8)
148 export CC=gcc-8
149 export CXX=g++-8
150 ;;
151clang)
152 export CC=clang
153 export CXX=clang++
154 ;;
155clang-3.9)
156 export CC=clang-3.9
157 export CXX=clang++-3.9
158 ;;
159clang-4.0)
160 export CC=clang-4.0
161 export CXX=clang++-4.0
162 ;;
163clang-5.0)
164 export CC=clang-5.0
165 export CXX=clang++-5.0
166 ;;
167clang-6.0)
168 export CC=clang-6.0
169 export CXX=clang++-6.0
170 ;;
171clang-7)
172 export CC=clang-7
173 export CXX=clang++-7
174 ;;
175*)
176 if [ "x$cc" != "x" ]; then
177 export CC="$cc"
178 fi
179 ;;
180esac
b4005bbf 181
09d45745
MJ
182if [ "x${CC:-}" != "x" ]; then
183 echo "Selected compiler:"
184 "$CC" -v
185fi
b4005bbf 186
0cdaa21c
MJ
187# Set platform variables
188case "$arch" in
995ac8f2 189sol10-i386)
09d45745
MJ
190 export MAKE=gmake
191 export TAR=gtar
192 export NPROC=gnproc
ad11244c 193 export PATH="/opt/csw/bin:/usr/ccs/bin:$PATH"
09d45745
MJ
194 export CPPFLAGS="-I/opt/csw/include -D_XOPEN_SOURCE=500 $CPPFLAGS"
195 export LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib $LDFLAGS"
f2cd0939 196 export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/opt/csw/lib/pkgconfig"
09d45745
MJ
197 export PYTHON="python3"
198 export PYTHON_CONFIG="python3-config"
0cdaa21c 199
0cdaa21c 200 RUN_TESTS="no"
09d45745 201 ;;
0cdaa21c 202
09d45745
MJ
203sol11-i386)
204 export MAKE=gmake
205 export TAR=gtar
206 export NPROC=nproc
f2cd0939
MJ
207 export PATH="/opt/csw/bin:$PATH:/usr/perl5/bin"
208 export CPPFLAGS="-D_XOPEN_SOURCE=500 $CPPFLAGS"
09d45745
MJ
209 export PYTHON="python3"
210 export PYTHON_CONFIG="python3-config"
f2cd0939 211 export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/lib/pkgconfig"
09d45745
MJ
212
213 RUN_TESTS="no"
0cdaa21c
MJ
214 ;;
215
b6e62a6a 216macosx)
09d45745
MJ
217 export MAKE=make
218 export TAR=tar
219 export NPROC="getconf _NPROCESSORS_ONLN"
220 export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
221 export CPPFLAGS="-I/opt/local/include $CPPFLAGS"
222 export LDFLAGS="-L/opt/local/lib $LDFLAGS"
223 export PYTHON="python3"
224 export PYTHON_CONFIG="python3-config"
b6e62a6a 225
09d45745 226 RUN_TESTS="no"
b6e62a6a
MJ
227 ;;
228
61afb3c3 229cygwin|cygwin64|msys32|msys64)
09d45745
MJ
230 export MAKE=make
231 export TAR=tar
232 export NPROC=nproc
233
61afb3c3
MJ
234 RUN_TESTS="no"
235 ;;
236
0cdaa21c 237*)
09d45745
MJ
238 export MAKE=make
239 export TAR=tar
240 export NPROC=nproc
241
0cdaa21c
MJ
242 RUN_TESTS="yes"
243
244 PYTHON2=python2
245 PYTHON3=python3
246
247 P2_VERSION=$($PYTHON2 -c "import sys;print(sys.version[:3])")
248 P3_VERSION=$($PYTHON3 -c "import sys;print(sys.version[:3])")
249
09d45745
MJ
250 DEPS_PYTHON2="$WORKSPACE/deps/build/lib/python$P2_VERSION/site-packages"
251 DEPS_PYTHON3="$WORKSPACE/deps/build/lib/python$P3_VERSION/site-packages"
0cdaa21c
MJ
252 ;;
253esac
254
9699c0e7 255case "$test_type" in
9699c0e7 256full)
09d45745
MJ
257 RUN_TESTS_LONG_REGRESSION="yes"
258 ;;
9699c0e7 259*)
09d45745
MJ
260 RUN_TESTS_LONG_REGRESSION="no"
261 ;;
9699c0e7 262esac
0cdaa21c 263
7361d941
MJ
264# If we have modules, build them
265if [ -d "$WORKSPACE/src/lttng-modules" ]; then
266 cd "$WORKSPACE/src/lttng-modules"
267 $MAKE -j"$($NPROC)" V=1
268 $MAKE modules_install V=1
269 depmod
270fi
271
212d2afd
MJ
272# Enter the source directory
273cd "$SRCDIR"
274
275# Run bootstrap in the source directory prior to configure
0cdaa21c
MJ
276./bootstrap
277
278# Get source version from configure script
212d2afd 279eval "$(grep '^PACKAGE_VERSION=' ./configure)"
09d45745 280PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
0cdaa21c 281
b4005bbf 282
0cdaa21c
MJ
283# The switch to build without UST changed in 2.8
284if vergte "$PACKAGE_VERSION" "2.8"; then
285 NO_UST="--without-lttng-ust"
286else
287 NO_UST="--disable-lttng-ust"
288fi
b4005bbf 289
6c3ec80e 290# Most build configs require the python bindings
09d45745 291CONF_OPTS=("--prefix=$PREFIX" "--enable-python-bindings")
6c3ec80e 292
edb933dd
MJ
293DIST_CONF_OPTS=()
294
09d45745
MJ
295# Set configure options and environment variables for each build
296# configuration.
b4005bbf 297case "$conf" in
0cdaa21c 298static)
09d45745
MJ
299 echo "Static lib only configuration"
300
301 CONF_OPTS+=("--enable-static" "--disable-shared")
0cdaa21c
MJ
302 ;;
303
0cdaa21c
MJ
304no-ust)
305 echo "Build without UST support"
09d45745 306 CONF_OPTS+=("$NO_UST")
edb933dd 307 DIST_CONF_OPTS+=("$NO_UST")
0cdaa21c
MJ
308 ;;
309
67122b96 310agents)
09d45745
MJ
311 echo "Java and Python agents configuration"
312
0cdaa21c 313 export JAVA_HOME="/usr/lib/jvm/default-java"
09d45745
MJ
314 export CLASSPATH="$DEPS_JAVA/*:/usr/share/java/*"
315 export PYTHONPATH="$DEPS_PYTHON2:$DEPS_PYTHON3"
0cdaa21c 316
09d45745 317 CONF_OPTS+=("--enable-test-java-agent-all" "--enable-test-python-agent-all")
0cdaa21c
MJ
318 ;;
319
320relayd-only)
09d45745
MJ
321 echo "Relayd only configuration"
322
323 CONF_OPTS=("--prefix=$PREFIX" "--disable-bin-lttng" "--disable-bin-lttng-consumerd" "--disable-bin-lttng-crash" "--disable-bin-lttng-sessiond" "--disable-extras" "--disable-man-pages" "$NO_UST")
0cdaa21c
MJ
324 ;;
325
22780fe6
JR
326debug-rcu)
327 echo "Enable RCU sanity checks for debugging"
09d45745
MJ
328
329 export CPPFLAGS="$CPPFLAGS -DDEBUG_RCU"
22780fe6
JR
330 ;;
331
0cdaa21c 332*)
09d45745 333 echo "Standard configuration"
0cdaa21c 334 ;;
b4005bbf
MJ
335esac
336
337# Build type
67122b96
MJ
338# oot : out-of-tree build
339# dist : build via make dist
340# oot-dist: build via make dist out-of-tree
341# * : normal tree build
b4005bbf 342#
09d45745
MJ
343# Make sure to move to the build directory and run configure
344# before continuing.
b4005bbf 345case "$build" in
09d45745
MJ
346oot)
347 echo "Out of tree build"
348
349 # Create and enter a temporary build directory
350 builddir=$(mktemp -d)
351 cd "$builddir"
352
353 "$SRCDIR/configure" "${CONF_OPTS[@]}"
354 ;;
355
356dist)
357 echo "Distribution in-tree build"
358
359 # Run configure and generate the tar file
360 # in the source directory
edb933dd 361 ./configure "${DIST_CONF_OPTS[@]}"
09d45745
MJ
362 $MAKE dist
363
364 # Create and enter a temporary build directory
365 builddir=$(mktemp -d)
366 cd "$builddir"
367
368 # Extract the distribution tar in the build directory,
369 # ignore the first directory level
370 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
371
372 # Build in extracted source tree
373 ./configure "${CONF_OPTS[@]}"
374 ;;
375
376oot-dist)
377 echo "Distribution out of tree build"
378
379 # Create and enter a temporary build directory
380 builddir=$(mktemp -d)
381 cd "$builddir"
382
383 # Run configure out of tree and generate the tar file
edb933dd 384 "$SRCDIR/configure" "${DIST_CONF_OPTS[@]}"
09d45745
MJ
385 $MAKE dist
386
387 dist_srcdir="$(mktemp -d)"
388 cd "$dist_srcdir"
389
390 # Extract the distribution tar in the new source directory,
391 # ignore the first directory level
392 $TAR xvf "$builddir"/*.tar.* --strip 1
393
394 # Create and enter a second temporary build directory
395 builddir="$(mktemp -d)"
396 cd "$builddir"
397
398 # Run configure from the extracted distribution tar,
399 # out of the source tree
400 "$dist_srcdir/configure" "${CONF_OPTS[@]}"
401 ;;
402
403*)
404 echo "Standard in-tree build"
405 ./configure "${CONF_OPTS[@]}"
406 ;;
b4005bbf
MJ
407esac
408
09d45745
MJ
409# We are now inside a configured build directory
410
0cdaa21c 411# BUILD!
212d2afd 412$MAKE -j "$($NPROC)" V=1
b4005bbf 413
09d45745
MJ
414# Install in the workspace
415$MAKE install DESTDIR="$WORKSPACE"
7671741c 416
09d45745
MJ
417# Run tests for all configs except 'no-ust'
418failed_tests=0
419if [ "$RUN_TESTS" = "yes" ] && [ "$conf" != "no-ust" ]; then
0cdaa21c
MJ
420 # Allow core dumps
421 ulimit -c unlimited
422
a4e98cc0
JR
423 # Force the lttng-sessiond path to /bin/true to prevent the spawing of a
424 # lttng-sessiond --daemonize on "lttng create"
425 export LTTNG_SESSIOND_PATH="/bin/true"
426
09d45745
MJ
427 # Run 'unit_tests', 2.8 and up has a new test suite
428 if vergte "$PACKAGE_VERSION" "2.8"; then
429 make --keep-going check || failed_tests=1
430 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$TAPDIR"
0cdaa21c 431 else
09d45745
MJ
432 cd tests
433 mkdir -p "$TAPDIR/unit"
434 mkdir -p "$TAPDIR/fast_regression"
435 mkdir -p "$TAPDIR/with_bindings_regression"
436 prove --merge -v --exec '' - < unit_tests --archive "$TAPDIR/unit/" || failed_tests=1
437 prove --merge -v --exec '' - < fast_regression --archive "$TAPDIR/fast_regression/" || failed_tests=1
438 prove --merge -v --exec '' - < with_bindings_regression --archive "$TAPDIR/with_bindings_regression/" || failed_tests=1
439 cd ..
440 fi
441
442 if [ "$RUN_TESTS_LONG_REGRESSION" = "yes" ]; then
443 cd tests
444 mkdir -p "$TAPDIR/long_regression"
445 prove --merge -v --exec '' - < long_regression --archive "$TAPDIR/long_regression/" || failed_tests=1
446 cd ..
0cdaa21c
MJ
447 fi
448
0cdaa21c 449 # TAP plugin is having a hard time with .yml files.
212d2afd 450 find "$TAPDIR" -name "meta.yml" -exec rm -f {} \;
09d45745
MJ
451else
452 # The TAP plugin will fail the job if no test logs are present
453 mkdir -p "$TAPDIR/no-tests"
454 echo "1..1" > "$TAPDIR/no-tests/tests.log"
455 echo "ok 1 - Test suite disabled" >> "$TAPDIR/no-tests/tests.log"
b4005bbf
MJ
456fi
457
09d45745 458# Clean the build directory
0cdaa21c 459$MAKE clean
b4005bbf 460
0cdaa21c 461# Cleanup rpath in executables and shared libraries
09d45745
MJ
462find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
463find "$WORKSPACE/$PREFIX/lib" -name "*.so" -exec chrpath --delete {} \;
0cdaa21c
MJ
464
465# Remove libtool .la files
09d45745 466find "$WORKSPACE/$PREFIX/lib" -name "*.la" -exec rm -f {} \;
b4005bbf 467
09d45745
MJ
468# Exit with failure if any of the tests failed
469exit $failed_tests
95654431
MJ
470
471# EOF
This page took 0.059807 seconds and 4 git commands to generate.