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