jjb: Add sles15sp4 to sles builds
[lttng-ci.git] / scripts / lttng-tools / build.sh
... / ...
CommitLineData
1#!/bin/bash
2# shellcheck disable=SC2103
3#
4# Copyright (C) 2016 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
5# Copyright (C) 2016-2020 Michael Jeanson <mjeanson@efficios.com>
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
20set -exu
21
22# Version compare functions
23vercomp () {
24 set +u
25 if [[ "$1" == "$2" ]]; then
26 return 0
27 fi
28 local IFS=.
29 # Ignore the shellcheck warning, we want splitting to happen based on IFS.
30 # shellcheck disable=SC2206
31 local i ver1=($1) ver2=($2)
32 # fill empty fields in ver1 with zeros
33 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
34 ver1[i]=0
35 done
36 for ((i=0; i<${#ver1[@]}; i++)); do
37 if [[ -z ${ver2[i]} ]]; then
38 # fill empty fields in ver2 with zeros
39 ver2[i]=0
40 fi
41 if ((10#${ver1[i]} > 10#${ver2[i]})); then
42 return 1
43 fi
44 if ((10#${ver1[i]} < 10#${ver2[i]})); then
45 return 2
46 fi
47 done
48 set -u
49 return 0
50}
51
52verlte() {
53 vercomp "$1" "$2"; local res="$?"
54 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
55}
56
57verlt() {
58 vercomp "$1" "$2"; local res="$?"
59 [ "$res" -eq "2" ]
60}
61
62vergte() {
63 vercomp "$1" "$2"; local res="$?"
64 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
65}
66
67vergt() {
68 vercomp "$1" "$2"; local res="$?"
69 [ "$res" -eq "1" ]
70}
71
72verne() {
73 vercomp "$1" "$2"; local res="$?"
74 [ "$res" -ne "0" ]
75}
76
77failed_configure() {
78 # Assume we are in the configured build directory
79 echo "#################### BEGIN config.log ####################"
80 cat config.log
81 echo "#################### END config.log ####################"
82
83 # End the build with failure
84 exit 1
85}
86
87set_execute_traversal_bit()
88{
89 path=$1
90
91 level="$path"
92 if [ ! -d "$path" ]; then
93 fail "Path is not a directory"
94 fi
95 while level="$(dirname "$level")"
96 do
97 if [ "$level" = / ]; then
98 break
99 fi
100 chmod a+x "$level"
101 done
102 chmod a+x "$path"
103}
104
105# Required variables
106WORKSPACE=${WORKSPACE:-}
107
108platform=${platform:-}
109conf=${conf:-}
110build=${build:-}
111cc=${cc:-}
112test_type=${test_type:-}
113
114SRCDIR="$WORKSPACE/src/lttng-tools"
115TAPDIR="$WORKSPACE/tap"
116PREFIX="/build"
117LIBDIR="lib"
118LIBDIR_ARCH="$LIBDIR"
119
120# RHEL and SLES both use lib64 but don't bother shipping a default autoconf
121# site config that matches this.
122if [[ ( -f /etc/redhat-release || -f /etc/SuSE-release || -f /etc/yocto-release ) ]]; then
123 # Detect the userspace bitness in a distro agnostic way
124 if file -L /bin/bash | grep '64-bit' >/dev/null 2>&1; then
125 LIBDIR_ARCH="${LIBDIR}64"
126 fi
127fi
128
129DEPS_INC="$WORKSPACE/deps/build/include"
130DEPS_LIB="$WORKSPACE/deps/build/$LIBDIR_ARCH"
131DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
132DEPS_BIN="$WORKSPACE/deps/build/bin"
133DEPS_JAVA="$WORKSPACE/deps/build/share/java"
134
135export PATH="$DEPS_BIN:$PATH"
136export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
137export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
138export CPPFLAGS="-I$DEPS_INC"
139export LDFLAGS="-L$DEPS_LIB"
140
141
142# Create tmp directory
143TMPDIR="$WORKSPACE/tmp"
144mkdir -p "$TMPDIR"
145
146# Use a symlink in /tmp to point to the the tmp directory
147# inside the workspace, this is to work around the path length
148# limit of unix sockets which are created by the test suite.
149tmpdir="$(mktemp)"
150ln -sf "$TMPDIR" "$tmpdir"
151export TMPDIR="$tmpdir"
152
153# Create a symlink to "babeltrace" when the "babeltrace2" executable is found.
154# This is a temporary workaround until lttng-tools either allows the override of
155# the trace reader in its test suite or that we move to only supporting
156# babeltrace2
157if [ -x "$DEPS_BIN/babeltrace2" ]; then
158 ln -s "$DEPS_BIN/babeltrace2" "$DEPS_BIN/babeltrace"
159fi
160
161# When using babeltrace2 make sure that it finds its plugins and
162# plugin-providers.
163export BABELTRACE_PLUGIN_PATH="$DEPS_LIB/babeltrace2/plugins/"
164export LIBBABELTRACE2_PLUGIN_PROVIDER_DIR="$DEPS_LIB/babeltrace2/plugin-providers/"
165
166export CFLAGS="-g -O2"
167export CXXFLAGS="-g -O2"
168
169# Set compiler variables
170case "$cc" in
171gcc)
172 export CC=gcc
173 export CXX=g++
174 ;;
175gcc-4.8)
176 export CC=gcc-4.8
177 export CXX=g++-4.8
178 ;;
179gcc-5)
180 export CC=gcc-5
181 export CXX=g++-5
182 ;;
183gcc-6)
184 export CC=gcc-6
185 export CXX=g++-6
186 ;;
187gcc-7)
188 export CC=gcc-7
189 export CXX=g++-7
190 ;;
191gcc-8)
192 export CC=gcc-8
193 export CXX=g++-8
194 ;;
195clang)
196 export CC=clang
197 export CXX=clang++
198 ;;
199clang-3.9)
200 export CC=clang-3.9
201 export CXX=clang++-3.9
202 ;;
203clang-4.0)
204 export CC=clang-4.0
205 export CXX=clang++-4.0
206 ;;
207clang-5.0)
208 export CC=clang-5.0
209 export CXX=clang++-5.0
210 ;;
211clang-6.0)
212 export CC=clang-6.0
213 export CXX=clang++-6.0
214 ;;
215clang-7)
216 export CC=clang-7
217 export CXX=clang++-7
218 ;;
219*)
220 if [ "x$cc" != "x" ]; then
221 export CC="$cc"
222 fi
223 ;;
224esac
225
226if [ "x${CC:-}" != "x" ]; then
227 echo "Selected compiler:"
228 "$CC" -v
229fi
230
231# Set platform variables
232case "$platform" in
233macos*)
234 export MAKE=make
235 export TAR=tar
236 export NPROC="getconf _NPROCESSORS_ONLN"
237 export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
238 export CPPFLAGS="-I/opt/local/include $CPPFLAGS"
239 export LDFLAGS="-L/opt/local/lib $LDFLAGS"
240 export PYTHON="python3"
241 export PYTHON_CONFIG="python3-config"
242
243 LTTNG_TOOLS_RUN_TESTS="no"
244 ;;
245
246cygwin|cygwin64|msys32|msys64)
247 export MAKE=make
248 export TAR=tar
249 export NPROC=nproc
250
251 LTTNG_TOOLS_RUN_TESTS="no"
252 ;;
253
254*)
255 export MAKE=make
256 export TAR=tar
257 export NPROC=nproc
258
259 LTTNG_TOOLS_RUN_TESTS="yes"
260
261 PYTHON2=python2
262 PYTHON3=python3
263
264 if command -v $PYTHON2 >/dev/null 2>&1; then
265 P2_VERSION=$($PYTHON2 -c 'import sys;v = sys.version.split()[0].split("."); print("{}.{}".format(v[0], v[1]))')
266 DEPS_PYTHON2="$WORKSPACE/deps/build/$LIBDIR/python$P2_VERSION/site-packages"
267 if [ "$LIBDIR" != "$LIBDIR_ARCH" ]; then
268 DEPS_PYTHON2="$DEPS_PYTHON2:$WORKSPACE/deps/build/$LIBDIR_ARCH/python$P2_VERSION/site-packages"
269 fi
270 fi
271
272 P3_VERSION=$($PYTHON3 -c 'import sys;v = sys.version.split()[0].split("."); print("{}.{}".format(v[0], v[1]))')
273 DEPS_PYTHON3="$WORKSPACE/deps/build/$LIBDIR/python$P3_VERSION/site-packages"
274 if [ "$LIBDIR" != "$LIBDIR_ARCH" ]; then
275 DEPS_PYTHON3="$DEPS_PYTHON3:$WORKSPACE/deps/build/$LIBDIR_ARCH/python$P3_VERSION/site-packages"
276 fi
277
278 # Most build configs require access to the babeltrace 2 python bindings.
279 # This also makes the lttngust python agent available for `agents` builds.
280 export PYTHONPATH="${DEPS_PYTHON2:-}${DEPS_PYTHON2:+:}$DEPS_PYTHON3"
281 ;;
282esac
283
284# The missing-field-initializers warning code is very dumb in GCC 4.8 on
285# SLES12 / EL7, disable it even if it's available.
286if [[ $platform = sles12sp5* ]] || [[ $platform = el7* ]]; then
287 CFLAGS="$CFLAGS -Wno-missing-field-initializers"
288 CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers"
289fi
290
291case "$test_type" in
292full)
293 LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION="yes"
294 ;;
295*)
296 LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION="no"
297 ;;
298esac
299
300# If we have modules, build them
301if [ -d "$WORKSPACE/src/lttng-modules" ]; then
302 cd "$WORKSPACE/src/lttng-modules"
303 $MAKE -j"$($NPROC)" V=1
304 $MAKE modules_install V=1
305 depmod
306fi
307
308# Print build env details
309print_os || true
310print_tooling || true
311
312# Enter the source directory
313cd "$SRCDIR"
314
315# Run bootstrap in the source directory prior to configure
316./bootstrap
317
318# Get source version from configure script
319eval "$(grep '^PACKAGE_VERSION=' ./configure)"
320PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
321
322
323# The switch to build without UST changed in 2.8
324if vergte "$PACKAGE_VERSION" "2.8"; then
325 NO_UST="--without-lttng-ust"
326else
327 NO_UST="--disable-lttng-ust"
328fi
329
330# Most build configs require the python bindings
331CONF_OPTS=("--prefix=$PREFIX" "--libdir=$PREFIX/$LIBDIR_ARCH" "--enable-python-bindings")
332
333DIST_CONF_OPTS=()
334
335# Set configure options and environment variables for each build
336# configuration.
337case "$conf" in
338static)
339 echo "Static lib only configuration"
340
341 CONF_OPTS+=("--enable-static" "--disable-shared")
342 ;;
343
344no-ust)
345 echo "Build without UST support"
346 CONF_OPTS+=("$NO_UST")
347 DIST_CONF_OPTS+=("$NO_UST")
348 ;;
349
350agents)
351 echo "Java and Python agents configuration"
352
353 export JAVA_HOME="/usr/lib/jvm/default-java"
354 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"
355
356 CONF_OPTS+=("--enable-test-java-agent-all" "--enable-test-python-agent-all")
357
358 # Explicitly add '--enable-test-java-agent-log4j2', it's not part of '-all' in stable 2.12/2.13
359 if verlt "$PACKAGE_VERSION" "2.14"; then
360 CONF_OPTS+=("--enable-test-java-agent-log4j2")
361 fi
362 ;;
363
364relayd-only)
365 echo "Relayd only configuration"
366
367 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")
368 ;;
369
370debug-rcu)
371 echo "Enable RCU sanity checks for debugging"
372
373 export CPPFLAGS="$CPPFLAGS -DDEBUG_RCU"
374 ;;
375
376*)
377 echo "Standard configuration"
378
379 # Something is broken in docbook-xml on yocto
380 if [[ "$platform" = yocto* ]]; then
381 CONF_OPTS+=("--disable-man-pages")
382 fi
383 ;;
384esac
385
386# Build type
387# oot : out-of-tree build
388# dist : build via make dist
389# oot-dist: build via make dist out-of-tree
390# * : normal tree build
391#
392# Make sure to move to the build directory and run configure
393# before continuing.
394case "$build" in
395oot)
396 echo "Out of tree build"
397
398 # Create and enter a temporary build directory
399 builddir=$(mktemp -d)
400 cd "$builddir"
401
402 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
403 ;;
404
405dist)
406 echo "Distribution in-tree build"
407
408 # Run configure and generate the tar file
409 # in the source directory
410 ./configure "${DIST_CONF_OPTS[@]}" || failed_configure
411 $MAKE dist
412
413 # Create and enter a temporary build directory
414 builddir=$(mktemp -d)
415 cd "$builddir"
416
417 # Extract the distribution tar in the build directory,
418 # ignore the first directory level
419 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
420
421 # Build in extracted source tree
422 ./configure "${CONF_OPTS[@]}" || failed_configure
423 ;;
424
425oot-dist)
426 echo "Distribution out of tree build"
427
428 # Create and enter a temporary build directory
429 builddir=$(mktemp -d)
430 cd "$builddir"
431
432 # Run configure out of tree and generate the tar file
433 "$SRCDIR/configure" "${DIST_CONF_OPTS[@]}" || failed_configure
434 $MAKE dist
435
436 dist_srcdir="$(mktemp -d)"
437 cd "$dist_srcdir"
438
439 # Extract the distribution tar in the new source directory,
440 # ignore the first directory level
441 $TAR xvf "$builddir"/*.tar.* --strip 1
442
443 # Create and enter a second temporary build directory
444 builddir="$(mktemp -d)"
445 cd "$builddir"
446
447 # Run configure from the extracted distribution tar,
448 # out of the source tree
449 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
450 ;;
451
452*)
453 echo "Standard in-tree build"
454 ./configure "${CONF_OPTS[@]}" || failed_configure
455 ;;
456esac
457
458# We are now inside a configured build directory
459
460# BUILD!
461$MAKE -j "$($NPROC)" V=1
462
463# Install in the workspace
464$MAKE install DESTDIR="$WORKSPACE"
465
466# Run tests for all configs except 'no-ust'
467failed_tests=0
468if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [ "$conf" != "no-ust" ]; then
469 # Allow core dumps
470 ulimit -c unlimited
471
472 # Force the lttng-sessiond path to /bin/true to prevent the spawing of a
473 # lttng-sessiond --daemonize on "lttng create"
474 export LTTNG_SESSIOND_PATH="/bin/true"
475
476 # Run 'unit_tests', 2.8 and up has a new test suite
477 if vergte "$PACKAGE_VERSION" "2.8"; then
478 # It is implied that tests depending on LTTNG_ENABLE_DESTRUCTIVE_TESTS
479 # only run for the root user. Note that here `destructive` means that
480 # operations are performed at the host level (add user etc.) that
481 # effectively modify the host. Running those tests are acceptable on our
482 # CI and root jobs since we always run root tests against a `snapshot`
483 # of the host.
484 if [ "$(id -u)" == "0" ]; then
485 # Allow the traversal of all directories leading to the
486 # DEPS_LIBS directory to enable test app run by temp users to
487 # access lttng-ust.
488 set_execute_traversal_bit "$DEPS_LIB"
489 # Allow `all` to interact with all deps libs.
490 chmod a+rwx -R "$DEPS_LIB"
491
492 export LTTNG_ENABLE_DESTRUCTIVE_TESTS="will-break-my-system"
493
494 # Some destructive tests play with the system clock, disable timesyncd
495 systemctl stop systemd-timesyncd.service || true
496 fi
497
498 make --keep-going check || failed_tests=1
499
500 # Copy tap logs for the jenkins tap parser before cleaning the build dir
501 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$TAPDIR"
502
503 # Copy the test suites top-level log which includes all tests failures
504 rsync -a --include 'test-suite.log' --include '*/' --exclude='*' tests/ "$WORKSPACE/log"
505 else
506 cd tests
507 mkdir -p "$TAPDIR/unit"
508 mkdir -p "$TAPDIR/fast_regression"
509 mkdir -p "$TAPDIR/with_bindings_regression"
510 prove --merge -v --exec '' - < unit_tests --archive "$TAPDIR/unit/" || failed_tests=1
511 prove --merge -v --exec '' - < fast_regression --archive "$TAPDIR/fast_regression/" || failed_tests=1
512 prove --merge -v --exec '' - < with_bindings_regression --archive "$TAPDIR/with_bindings_regression/" || failed_tests=1
513 cd ..
514 fi
515
516 if [ "$LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION" = "yes" ]; then
517 cd tests
518 mkdir -p "$TAPDIR/long_regression"
519 prove --merge -v --exec '' - < long_regression --archive "$TAPDIR/long_regression/" || failed_tests=1
520 cd ..
521 fi
522
523 # TAP plugin is having a hard time with .yml files.
524 find "$TAPDIR" -name "meta.yml" -exec rm -f {} \;
525else
526 # The TAP plugin will fail the job if no test logs are present
527 mkdir -p "$TAPDIR/no-tests"
528 echo "1..1" > "$TAPDIR/no-tests/tests.log"
529 echo "ok 1 - Test suite disabled" >> "$TAPDIR/no-tests/tests.log"
530fi
531
532# Clean the build directory
533$MAKE clean
534
535# Cleanup rpath in executables
536find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
537
538# Some configs don't build liblttng-ctl
539if [ -d "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" ]; then
540 # Cleanup rpath in shared libraries
541 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.so" -exec chrpath --delete {} \;
542 # Remove libtool .la files
543 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.la" -exec rm -f {} \;
544fi
545
546# Exit with failure if any of the tests failed
547exit $failed_tests
548
549# EOF
This page took 0.024191 seconds and 4 git commands to generate.