jjb: Use java 1.8 with SLES builds
[lttng-ci.git] / scripts / lttng-tools / build.sh
CommitLineData
51c9c62d 1#!/bin/bash
b4005bbf 2#
1ad4c3d0
MJ
3# SPDX-FileCopyrightText: 2016 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4# SPDX-FileCopyrightText: 2016-2023 Michael Jeanson <mjeanson@efficios.com>
5# SPDX-License-Identifier: GPL-2.0-or-later
b4005bbf 6#
1ad4c3d0 7# shellcheck disable=SC2103
b4005bbf 8
51c9c62d
MJ
9set -exu
10
0cdaa21c 11# Version compare functions
b6e62a6a
MJ
12vercomp () {
13 set +u
14 if [[ "$1" == "$2" ]]; then
15 return 0
16 fi
17 local IFS=.
4afa623f
MJ
18 # Ignore the shellcheck warning, we want splitting to happen based on IFS.
19 # shellcheck disable=SC2206
b6e62a6a
MJ
20 local i ver1=($1) ver2=($2)
21 # fill empty fields in ver1 with zeros
22 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
23 ver1[i]=0
24 done
25 for ((i=0; i<${#ver1[@]}; i++)); do
26 if [[ -z ${ver2[i]} ]]; then
27 # fill empty fields in ver2 with zeros
28 ver2[i]=0
29 fi
30 if ((10#${ver1[i]} > 10#${ver2[i]})); then
31 return 1
32 fi
33 if ((10#${ver1[i]} < 10#${ver2[i]})); then
34 return 2
35 fi
36 done
37 set -u
38 return 0
39}
40
0cdaa21c 41verlte() {
b6e62a6a
MJ
42 vercomp "$1" "$2"; local res="$?"
43 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
0cdaa21c
MJ
44}
45
46verlt() {
b6e62a6a
MJ
47 vercomp "$1" "$2"; local res="$?"
48 [ "$res" -eq "2" ]
0cdaa21c
MJ
49}
50
51vergte() {
b6e62a6a
MJ
52 vercomp "$1" "$2"; local res="$?"
53 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
0cdaa21c
MJ
54}
55
56vergt() {
b6e62a6a
MJ
57 vercomp "$1" "$2"; local res="$?"
58 [ "$res" -eq "1" ]
59}
60
61verne() {
62 vercomp "$1" "$2"; local res="$?"
63 [ "$res" -ne "0" ]
0cdaa21c
MJ
64}
65
1ad4c3d0
MJ
66print_header() {
67 set +x
68
69 local message=" $1 "
70 local message_len
71 local padding_len
72
73 message_len="${#message}"
74 padding_len=$(( (80 - (message_len)) / 2 ))
75
76
77 printf '\n'; printf -- '#%.0s' {1..80}; printf '\n'
78 printf -- '-%.0s' {1..80}; printf '\n'
79 printf -- '#%.0s' $(seq 1 $padding_len); printf '%s' "$message"; printf -- '#%.0s' $(seq 1 $padding_len); printf '\n'
80 printf -- '-%.0s' {1..80}; printf '\n'
81 printf -- '#%.0s' {1..80}; printf '\n\n'
82
83 set -x
84}
85
51c9c62d
MJ
86failed_configure() {
87 # Assume we are in the configured build directory
1ad4c3d0 88 print_header "BEGIN config.log"
51c9c62d 89 cat config.log
1ad4c3d0 90 print_header "END config.log"
51c9c62d
MJ
91
92 # End the build with failure
93 exit 1
94}
95
54c3c7ec
JR
96set_execute_traversal_bit()
97{
98 path=$1
99
100 level="$path"
101 if [ ! -d "$path" ]; then
102 fail "Path is not a directory"
103 fi
104 while level="$(dirname "$level")"
105 do
106 if [ "$level" = / ]; then
107 break
108 fi
109 chmod a+x "$level"
110 done
111 chmod a+x "$path"
112}
113
1ad4c3d0
MJ
114print_header "LTTng-tools build script starting"
115
09d45745
MJ
116# Required variables
117WORKSPACE=${WORKSPACE:-}
118
1ad4c3d0 119# Axis
5fcae288 120platform=${platform:-}
212d2afd
MJ
121conf=${conf:-}
122build=${build:-}
09d45745 123cc=${cc:-}
1ad4c3d0
MJ
124
125# Build steps that can be overriden by the environment
126LTTNG_TOOLS_MAKE_INSTALL="${LTTNG_TOOLS_MAKE_INSTALL:-yes}"
127LTTNG_TOOLS_MAKE_CLEAN="${LTTNG_TOOLS_MAKE_CLEAN:-yes}"
128LTTNG_TOOLS_GEN_COMPILE_COMMANDS="${LTTNG_TOOLS_GEN_COMPILE_COMMANDS:-no}"
129LTTNG_TOOLS_RUN_TESTS="${LTTNG_TOOLS_RUN_TESTS:-yes}"
130LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION="${LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION:-no}"
80cc6268 131LTTNG_TOOLS_RUN_UST_JAVA_TESTS="${LTTNG_TOOLS_RUN_UST_JAVA_TESTS:-yes}"
1ad4c3d0 132LTTNG_TOOLS_CLANG_TIDY="${LTTNG_TOOLS_CLANG_TIDY:-no}"
b4005bbf 133
4afa623f
MJ
134SRCDIR="$WORKSPACE/src/lttng-tools"
135TAPDIR="$WORKSPACE/tap"
136PREFIX="/build"
137LIBDIR="lib"
32dde2a3 138LIBDIR_ARCH="$LIBDIR"
4afa623f
MJ
139
140# RHEL and SLES both use lib64 but don't bother shipping a default autoconf
141# site config that matches this.
47ca4354 142if [[ ( -f /etc/redhat-release || -f /etc/products.d/SLES.prod || -f /etc/yocto-release ) ]]; then
85322e5d
MJ
143 # Detect the userspace bitness in a distro agnostic way
144 if file -L /bin/bash | grep '64-bit' >/dev/null 2>&1; then
145 LIBDIR_ARCH="${LIBDIR}64"
85322e5d 146 fi
4afa623f
MJ
147fi
148
09d45745 149DEPS_INC="$WORKSPACE/deps/build/include"
4afa623f 150DEPS_LIB="$WORKSPACE/deps/build/$LIBDIR_ARCH"
b8bdba8f 151DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
09d45745
MJ
152DEPS_BIN="$WORKSPACE/deps/build/bin"
153DEPS_JAVA="$WORKSPACE/deps/build/share/java"
154
155export PATH="$DEPS_BIN:$PATH"
156export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
b8bdba8f 157export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
09d45745
MJ
158export CPPFLAGS="-I$DEPS_INC"
159export LDFLAGS="-L$DEPS_LIB"
160
1ad4c3d0
MJ
161exit_status=0
162
163# Use bear to generate compile_commands.json when enabled
164BEAR=""
165if [ "$LTTNG_TOOLS_GEN_COMPILE_COMMANDS" = "yes" ]; then
166 BEAR="bear"
167fi
212d2afd 168
09d45745
MJ
169# Create tmp directory
170TMPDIR="$WORKSPACE/tmp"
171mkdir -p "$TMPDIR"
212d2afd 172
09d45745
MJ
173# Use a symlink in /tmp to point to the the tmp directory
174# inside the workspace, this is to work around the path length
175# limit of unix sockets which are created by the test suite.
176tmpdir="$(mktemp)"
177ln -sf "$TMPDIR" "$tmpdir"
178export TMPDIR="$tmpdir"
b4005bbf 179
481eadc8
JR
180# Create a symlink to "babeltrace" when the "babeltrace2" executable is found.
181# This is a temporary workaround until lttng-tools either allows the override of
182# the trace reader in its test suite or that we move to only supporting
183# babeltrace2
184if [ -x "$DEPS_BIN/babeltrace2" ]; then
65444f1c 185 ln -s "$DEPS_BIN/babeltrace2" "$DEPS_BIN/babeltrace"
481eadc8
JR
186fi
187
188# When using babeltrace2 make sure that it finds its plugins and
189# plugin-providers.
190export BABELTRACE_PLUGIN_PATH="$DEPS_LIB/babeltrace2/plugins/"
191export LIBBABELTRACE2_PLUGIN_PROVIDER_DIR="$DEPS_LIB/babeltrace2/plugin-providers/"
192
09d45745 193export CFLAGS="-g -O2"
fdb66460 194export CXXFLAGS="-g -O2"
b4005bbf 195
09d45745
MJ
196# Set compiler variables
197case "$cc" in
198gcc)
199 export CC=gcc
200 export CXX=g++
201 ;;
1ad4c3d0
MJ
202gcc-*)
203 export CC=gcc-${cc#gcc-}
204 export CXX=g++-${cc#gcc-}
09d45745
MJ
205 ;;
206clang)
207 export CC=clang
208 export CXX=clang++
209 ;;
1ad4c3d0
MJ
210clang-*)
211 export CC=clang-${cc#clang-}
212 export CXX=clang++-${cc#clang-}
09d45745
MJ
213 ;;
214*)
215 if [ "x$cc" != "x" ]; then
1ad4c3d0 216 export CC="$cc"
09d45745
MJ
217 fi
218 ;;
219esac
b4005bbf 220
0cdaa21c 221# Set platform variables
5fcae288 222case "$platform" in
f0d7e5b1 223macos*)
09d45745
MJ
224 export MAKE=make
225 export TAR=tar
226 export NPROC="getconf _NPROCESSORS_ONLN"
227 export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
228 export CPPFLAGS="-I/opt/local/include $CPPFLAGS"
229 export LDFLAGS="-L/opt/local/lib $LDFLAGS"
00f7bb3f
MJ
230 export PYTHON="python3"
231 export PYTHON_CONFIG="python3-config"
b6e62a6a
MJ
232 ;;
233
61afb3c3 234cygwin|cygwin64|msys32|msys64)
09d45745
MJ
235 export MAKE=make
236 export TAR=tar
237 export NPROC=nproc
61afb3c3
MJ
238 ;;
239
0cdaa21c 240*)
09d45745
MJ
241 export MAKE=make
242 export TAR=tar
243 export NPROC=nproc
244
0cdaa21c
MJ
245 PYTHON2=python2
246 PYTHON3=python3
247
b4c6a892
MJ
248 if command -v $PYTHON2 >/dev/null 2>&1; then
249 P2_VERSION=$($PYTHON2 -c 'import sys;v = sys.version.split()[0].split("."); print("{}.{}".format(v[0], v[1]))')
4afa623f
MJ
250 DEPS_PYTHON2="$WORKSPACE/deps/build/$LIBDIR/python$P2_VERSION/site-packages"
251 if [ "$LIBDIR" != "$LIBDIR_ARCH" ]; then
252 DEPS_PYTHON2="$DEPS_PYTHON2:$WORKSPACE/deps/build/$LIBDIR_ARCH/python$P2_VERSION/site-packages"
253 fi
b4c6a892 254 fi
0cdaa21c 255
b4c6a892 256 P3_VERSION=$($PYTHON3 -c 'import sys;v = sys.version.split()[0].split("."); print("{}.{}".format(v[0], v[1]))')
05615fb2
MJ
257
258 # Temporary fix for an issue on debian python >= 3.10, add the 'local' prefix
259 DEPS_PYTHON3="$WORKSPACE/deps/build/$LIBDIR/python$P3_VERSION/site-packages:$WORKSPACE/deps/build/local/$LIBDIR/python$P3_VERSION/dist-packages"
4afa623f
MJ
260 if [ "$LIBDIR" != "$LIBDIR_ARCH" ]; then
261 DEPS_PYTHON3="$DEPS_PYTHON3:$WORKSPACE/deps/build/$LIBDIR_ARCH/python$P3_VERSION/site-packages"
262 fi
de7e8d55
JG
263
264 # Most build configs require access to the babeltrace 2 python bindings.
265 # This also makes the lttngust python agent available for `agents` builds.
266 export PYTHONPATH="${DEPS_PYTHON2:-}${DEPS_PYTHON2:+:}$DEPS_PYTHON3"
0cdaa21c
MJ
267 ;;
268esac
269
6843e673
MJ
270# Some warning flags are very dumb in GCC 4.8 on SLES12 / EL7, disable them
271# even if they are available.
29d9c2b2 272if [[ $platform = sles12sp5* ]] || [[ $platform = el7* ]]; then
6843e673
MJ
273 CFLAGS="$CFLAGS -Wno-missing-field-initializers -Wno-shadow"
274 CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers -Wno-shadow"
fdb66460
MJ
275fi
276
7361d941
MJ
277# If we have modules, build them
278if [ -d "$WORKSPACE/src/lttng-modules" ]; then
1ad4c3d0 279 print_header "Build and install LTTng-modules"
7361d941
MJ
280 cd "$WORKSPACE/src/lttng-modules"
281 $MAKE -j"$($NPROC)" V=1
282 $MAKE modules_install V=1
283 depmod
284fi
285
51c9c62d 286# Print build env details
1ad4c3d0 287print_header "Build environment details"
8c956c4b 288print_hardware || true
51c9c62d
MJ
289print_os || true
290print_tooling || true
291
212d2afd
MJ
292# Enter the source directory
293cd "$SRCDIR"
294
295# Run bootstrap in the source directory prior to configure
1ad4c3d0 296print_header "Bootstrap autotools"
0cdaa21c
MJ
297./bootstrap
298
299# Get source version from configure script
212d2afd 300eval "$(grep '^PACKAGE_VERSION=' ./configure)"
09d45745 301PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
0cdaa21c 302
1ad4c3d0
MJ
303CONF_OPTS=("--prefix=$PREFIX" "--libdir=$PREFIX/$LIBDIR_ARCH" "--disable-maintainer-mode")
304DIST_CONF_OPTS=("--disable-maintainer-mode")
edb933dd 305
09d45745
MJ
306# Set configure options and environment variables for each build
307# configuration.
b4005bbf 308case "$conf" in
0cdaa21c 309static)
1ad4c3d0 310 print_header "Conf: Static lib only"
09d45745 311
1ad4c3d0 312 CONF_OPTS+=("--enable-static" "--disable-shared" "--enable-python-bindings")
0cdaa21c
MJ
313 ;;
314
0cdaa21c 315no-ust)
1ad4c3d0 316 print_header "Conf: Without UST support"
2c34ea14 317
1ad4c3d0
MJ
318 CONF_OPTS+=("--without-lttng-ust")
319 DIST_CONF_OPTS+=("--without-lttng-ust")
0cdaa21c
MJ
320 ;;
321
67122b96 322agents)
1ad4c3d0 323 print_header "Conf: Java and Python agents"
09d45745 324
4a9fa8ba
KS
325 if [[ -z "${JAVA_HOME:-}" ]] ; then
326 export JAVA_HOME="/usr/lib/jvm/default-java"
327 fi
61c5ba32 328 export CLASSPATH="$DEPS_JAVA/lttng-ust-agent-all.jar:/usr/share/java/log4j-api.jar:/usr/share/java/log4j-core.jar:/usr/share/java/log4j-1.2.jar"
dc56017a 329 if [[ -f /etc/products.d/SLES.prod ]] ; then
ada7f884
KS
330 export JAVA_HOME="/usr/${LIBDIR_ARCH}/jvm/java-1.8.0-openjdk-1.8.0"
331 export PATH="/usr/${LIBDIR_ARCH}/jvm/java-1.8.0-openjdk-1.8.0/bin:/usr/${LIBDIR_ARCH}/jvm/jre-1.8.0-openjdk/bin:${PATH}"
dc56017a
KS
332 SLES_VERSION="$(grep -E '</version>' /etc/products.d/SLES.prod | grep -E -o '[0-9]+\.[0-9]+')"
333 if vergte "${SLES_VERSION}" "15.5" ; then
334 export CLASSPATH="${DEPS_JAVA}/lttng-ust-agent-all.jar:/usr/share/java/log4j/log4j-api.jar:/usr/share/java/log4j/log4j-core.jar:/usr/share/java/log4j12/log4j-12.jar"
335 fi
336 fi
337
0cdaa21c 338
1ad4c3d0 339 CONF_OPTS+=("--enable-python-bindings" "--enable-test-java-agent-all")
d51c467a
MJ
340
341 # Explicitly add '--enable-test-java-agent-log4j2', it's not part of '-all' in stable 2.12/2.13
342 if verlt "$PACKAGE_VERSION" "2.14"; then
343 CONF_OPTS+=("--enable-test-java-agent-log4j2")
344 fi
b7b61fcb
MJ
345
346 # Some distros don't ship python2 anymore
347 if command -v $PYTHON2 >/dev/null 2>&1; then
348 CONF_OPTS+=("--enable-test-python-agent-all")
349 else
350 CONF_OPTS+=("--enable-test-python3-agent")
351 fi
0cdaa21c
MJ
352 ;;
353
354relayd-only)
1ad4c3d0 355 print_header "Conf: Relayd only"
09d45745 356
1ad4c3d0 357 CONF_OPTS+=("--disable-bin-lttng" "--disable-bin-lttng-consumerd" "--disable-bin-lttng-crash" "--disable-bin-lttng-sessiond" "--disable-extras" "--disable-man-pages" "--without-lttng-ust")
0cdaa21c
MJ
358 ;;
359
22780fe6 360debug-rcu)
1ad4c3d0
MJ
361 print_header "Conf: RCU sanity checks for debugging"
362
363 CONF_OPTS+=("--enable-python-bindings")
09d45745
MJ
364
365 export CPPFLAGS="$CPPFLAGS -DDEBUG_RCU"
22780fe6
JR
366 ;;
367
0cdaa21c 368*)
1ad4c3d0
MJ
369 print_header "Conf: Standard"
370
371 CONF_OPTS+=("--enable-python-bindings")
6871000c
MJ
372
373 # Something is broken in docbook-xml on yocto
374 if [[ "$platform" = yocto* ]]; then
375 CONF_OPTS+=("--disable-man-pages")
376 fi
0cdaa21c 377 ;;
b4005bbf
MJ
378esac
379
380# Build type
67122b96
MJ
381# oot : out-of-tree build
382# dist : build via make dist
383# oot-dist: build via make dist out-of-tree
384# * : normal tree build
b4005bbf 385#
09d45745
MJ
386# Make sure to move to the build directory and run configure
387# before continuing.
b4005bbf 388case "$build" in
09d45745 389oot)
1ad4c3d0 390 print_header "Build: Out of tree"
09d45745
MJ
391
392 # Create and enter a temporary build directory
393 builddir=$(mktemp -d)
394 cd "$builddir"
395
51c9c62d 396 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
09d45745
MJ
397 ;;
398
399dist)
1ad4c3d0 400 print_header "Build: Distribution in-tree"
09d45745
MJ
401
402 # Run configure and generate the tar file
403 # in the source directory
1ad4c3d0 404
51c9c62d 405 ./configure "${DIST_CONF_OPTS[@]}" || failed_configure
09d45745
MJ
406 $MAKE dist
407
408 # Create and enter a temporary build directory
409 builddir=$(mktemp -d)
410 cd "$builddir"
411
412 # Extract the distribution tar in the build directory,
413 # ignore the first directory level
414 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
415
416 # Build in extracted source tree
51c9c62d 417 ./configure "${CONF_OPTS[@]}" || failed_configure
09d45745
MJ
418 ;;
419
420oot-dist)
1ad4c3d0 421 print_header "Build: Distribution Out of tree"
09d45745
MJ
422
423 # Create and enter a temporary build directory
424 builddir=$(mktemp -d)
425 cd "$builddir"
426
427 # Run configure out of tree and generate the tar file
51c9c62d 428 "$SRCDIR/configure" "${DIST_CONF_OPTS[@]}" || failed_configure
09d45745
MJ
429 $MAKE dist
430
431 dist_srcdir="$(mktemp -d)"
432 cd "$dist_srcdir"
433
434 # Extract the distribution tar in the new source directory,
435 # ignore the first directory level
436 $TAR xvf "$builddir"/*.tar.* --strip 1
437
438 # Create and enter a second temporary build directory
439 builddir="$(mktemp -d)"
440 cd "$builddir"
441
442 # Run configure from the extracted distribution tar,
443 # out of the source tree
51c9c62d 444 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
09d45745
MJ
445 ;;
446
447*)
1ad4c3d0 448 print_header "Build: Standard In-tree"
51c9c62d 449 ./configure "${CONF_OPTS[@]}" || failed_configure
09d45745 450 ;;
b4005bbf
MJ
451esac
452
09d45745
MJ
453# We are now inside a configured build directory
454
0cdaa21c 455# BUILD!
1ad4c3d0
MJ
456print_header "BUILD!"
457$BEAR ${BEAR:+--} $MAKE -j "$($NPROC)" V=1
458
459# Install in the workspace if enabled
460if [ "$LTTNG_TOOLS_MAKE_INSTALL" = "yes" ]; then
461 print_header "Install"
462
463 $MAKE install V=1 DESTDIR="$WORKSPACE"
464
465 # Cleanup rpath in executables
466 find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
467
468 # Some configs don't build liblttng-ctl
469 if [ -d "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" ]; then
470 # Cleanup rpath in shared libraries
471 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.so" -exec chrpath --delete {} \;
472 # Remove libtool .la files
473 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.la" -delete
474 fi
475fi
476
477# Run clang-tidy on the topmost commit
478if [ "$LTTNG_TOOLS_CLANG_TIDY" = "yes" ]; then
479 print_header "Run clang-tidy"
b4005bbf 480
1ad4c3d0
MJ
481 # This would be better by linting only the lines touched by a patch but it
482 # doesn't seem to work, the lines are always filtered and no error is
483 # reported.
484 #git diff -U0 HEAD^ | clang-tidy-diff -p1 -j "$($NPROC)" -timeout 60 -fix
485
486 # Instead, run clan-tidy on all the files touched by the patch.
487 while read -r filepath; do
488 if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
489 clang-tidy --fix-errors "$(realpath "$filepath")"
490 fi
491 done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
492
493 # If the tree has local changes, the formatting was incorrect
494 GIT_DIFF_OUTPUT=$(git diff)
495 if [ -n "$GIT_DIFF_OUTPUT" ]; then
496 echo "Saving clang-tidy proposed fixes in clang-tidy-fixes.diff"
497 git diff > "$WORKSPACE/clang-tidy-fixes.diff"
498
499 # Restore the unfixed files so they can be viewed in the warnings web
500 # interface
501 git checkout .
502 exit_status=1
503 fi
504fi
7671741c 505
d6237b1b
MJ
506# Run tests for all configs except 'no-ust' / 'relayd-only'
507if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [[ ! "$conf" =~ (no-ust|relayd-only) ]]; then
1ad4c3d0
MJ
508 print_header "Run test suite"
509
0cdaa21c
MJ
510 # Allow core dumps
511 ulimit -c unlimited
512
a4e98cc0
JR
513 # Force the lttng-sessiond path to /bin/true to prevent the spawing of a
514 # lttng-sessiond --daemonize on "lttng create"
515 export LTTNG_SESSIOND_PATH="/bin/true"
516
1ad4c3d0
MJ
517 # It is implied that tests depending on LTTNG_ENABLE_DESTRUCTIVE_TESTS
518 # only run for the root user. Note that here `destructive` means that
519 # operations are performed at the host level (add user etc.) that
520 # effectively modify the host. Running those tests are acceptable on our
521 # CI and root jobs since we always run root tests against a `snapshot`
522 # of the host.
523 if [ "$(id -u)" == "0" ]; then
524 # Allow the traversal of all directories leading to the
525 # DEPS_LIBS directory to enable test app run by temp users to
526 # access lttng-ust.
527 set_execute_traversal_bit "$DEPS_LIB"
528 # Allow `all` to interact with all deps libs.
529 chmod a+rwx -R "$DEPS_LIB"
530
531 export LTTNG_ENABLE_DESTRUCTIVE_TESTS="will-break-my-system"
532
533 # Some destructive tests play with the system clock, disable timesyncd
534 systemctl stop systemd-timesyncd.service || true
535 fi
65444f1c 536
1ad4c3d0 537 make --keep-going check || exit_status=1
4174b905 538
68d45ec8 539 # Copy tap logs for the jenkins tap parser before cleaning the build dir
1ad4c3d0 540 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$TAPDIR"
4174b905 541
1ad4c3d0
MJ
542 # Copy the test suites top-level log which includes all tests failures
543 rsync -a --include 'test-suite.log' --include '*/' --exclude='*' tests/ "$WORKSPACE/log"
09d45745 544
aff4e3d1 545 if [ "$LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION" = "yes" ]; then
1ad4c3d0 546 print_header "Run long regression tests"
09d45745
MJ
547 cd tests
548 mkdir -p "$TAPDIR/long_regression"
1ad4c3d0 549 prove --merge -v --exec '' - < long_regression --archive "$TAPDIR/long_regression/" || exit_status=1
65444f1c 550 cd ..
0cdaa21c 551 fi
68d45ec8 552
1b7b4b35 553 if [ "$LTTNG_TOOLS_RUN_UST_JAVA_TESTS" = "yes" ] && [ "$LTTNG_TOOLS_MAKE_INSTALL" = "yes" ] && [ "$conf" = "agents" ] ; then
68d45ec8
KS
554 print_header "Run lttng-ust-java-tests"
555 # Git Source
556 LTTNG_UST_JAVA_TESTS_GIT_SOURCE="${LTTNG_UST_JAVA_TESTS_GIT_SOURCE:-https://github.com/lttng/lttng-ust-java-tests.git}"
557 LTTNG_UST_JAVA_TESTS_GIT_BRANCH="${LTTNG_UST_JAVA_TESTS_GIT_BRANCH:-master}"
558
559 OWD="$(pwd)"
560 cd ..
561 git clone -b "${LTTNG_UST_JAVA_TESTS_GIT_BRANCH}" "${LTTNG_UST_JAVA_TESTS_GIT_SOURCE}" lttng-ust-java-tests
562 cd lttng-ust-java-tests
563
564 LTTNG_UST_JAVA_TESTS_ENV=(
4a9fa8ba
KS
565 # Some ci nodes (eg. SLES12) don't have maven distributed by their
566 # package manager. As a result, the maven binary is deployed in
567 # '/opt/apache/maven/bin'.
568 PATH="${WORKSPACE}/build/bin/:$PATH:/opt/apache/maven/bin/"
569 LD_LIBRARY_PATH="${WORKSPACE}/build/${LIBDIR}/:${WORKSPACE}/build/${LIBDIR_ARCH}:$LD_LIBRARY_PATH"
68d45ec8 570 LTTNG_UST_DEBUG=1
4a9fa8ba
KS
571 LTTNG_CONSUMERD32_BIN="${WORKSPACE}/build/${LIBDIR_ARCH}/lttng/libexec/lttng-consumerd"
572 LTTNG_CONSUMERD64_BIN="${WORKSPACE}/build/${LIBDIR_ARCH}/lttng/libexec/lttng-consumerd"
68d45ec8 573 LTTNG_SESSION_CONFIG_XSD_PATH="${WORKSPACE}/build/share/xml/lttng"
4a9fa8ba
KS
574 BABELTRACE_PLUGIN_PATH="${WORKSPACE}/deps/build/${LIBDIR_ARCH}/babeltrace2/plugins"
575 LIBBABELTRACE2_PLUGIN_PROVIDER_DIR="${WORKSPACE}/deps/build/${LIBDIR_ARCH}/babeltrace2/plugin-providers"
68d45ec8
KS
576 )
577 LTTNG_UST_JAVA_TESTS_MAVEN_OPTS=(
578 "-Dmaven.test.failure.ignore=true"
579 "-Dcommon-jar-location=${WORKSPACE}/deps/build/share/java/lttng-ust-agent-common.jar"
580 "-Djul-jar-location=${WORKSPACE}/deps/build/share/java/lttng-ust-agent-jul.jar"
581 "-Dlog4j-jar-location=${WORKSPACE}/deps/build/share/java/lttng-ust-agent-log4j.jar"
582 "-Dlog4j2-jar-location=${WORKSPACE}/deps/build/share/java/lttng-ust-agent-log4j2.jar"
4a9fa8ba 583 "-DargLine=-Djava.library.path=${WORKSPACE}/deps/build/${LIBDIR_ARCH}"
68d45ec8
KS
584 '-Dgroups=!domain:log4j2'
585 )
586 env "${LTTNG_UST_JAVA_TESTS_ENV[@]}" mvn -version
4a9fa8ba 587 mkdir -p "${WORKSPACE}/log"
68d45ec8
KS
588 env "${LTTNG_UST_JAVA_TESTS_ENV[@]}" lttng-sessiond -b -vvv 1>"${WORKSPACE}/log/lttng-ust-java-tests-lttng-sessiond.log" 2>&1
589 env "${LTTNG_UST_JAVA_TESTS_ENV[@]}" mvn "${LTTNG_UST_JAVA_TESTS_MAVEN_OPTS[@]}" clean verify || exit_status=1
590 killall lttng-sessiond
591
592 cd "${OWD}"
593 fi
2c34ea14
MJ
594fi
595
d6237b1b 596if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [[ "$conf" =~ (no-ust|relayd-only) ]]; then
09d45745
MJ
597 # The TAP plugin will fail the job if no test logs are present
598 mkdir -p "$TAPDIR/no-tests"
599 echo "1..1" > "$TAPDIR/no-tests/tests.log"
600 echo "ok 1 - Test suite disabled" >> "$TAPDIR/no-tests/tests.log"
b4005bbf
MJ
601fi
602
09d45745 603# Clean the build directory
1ad4c3d0
MJ
604if [ "$LTTNG_TOOLS_MAKE_CLEAN" = "yes" ]; then
605 print_header "Clean"
606 $MAKE clean
0a059dd4 607fi
b4005bbf 608
1ad4c3d0
MJ
609print_header "LTTng-tools build script ended with: $(test $exit_status == 0 && echo SUCCESS || echo FAILURE)"
610
09d45745 611# Exit with failure if any of the tests failed
1ad4c3d0 612exit $exit_status
95654431
MJ
613
614# EOF
1ad4c3d0 615# vim: expandtab tabstop=4 shiftwidth=4
This page took 0.062166 seconds and 4 git commands to generate.