jjb: Update java CLASSPATH for sles15sp5
[lttng-ci.git] / scripts / lttng-ust / build.sh
CommitLineData
51c9c62d 1#!/bin/bash
2b68721a 2#
2c34ea14
MJ
3# SPDX-FileCopyrightText: 2015 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
2b68721a 6
51c9c62d
MJ
7set -exu
8
3579dc14
MJ
9# Version compare functions
10vercomp () {
11 set +u
12 if [[ "$1" == "$2" ]]; then
13 return 0
14 fi
15 local IFS=.
4afa623f
MJ
16 # Ignore the shellcheck warning, we want splitting to happen based on IFS.
17 # shellcheck disable=SC2206
3579dc14
MJ
18 local i ver1=($1) ver2=($2)
19 # fill empty fields in ver1 with zeros
20 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
21 ver1[i]=0
22 done
23 for ((i=0; i<${#ver1[@]}; i++)); do
24 if [[ -z ${ver2[i]} ]]; then
25 # fill empty fields in ver2 with zeros
26 ver2[i]=0
27 fi
28 if ((10#${ver1[i]} > 10#${ver2[i]})); then
29 return 1
30 fi
31 if ((10#${ver1[i]} < 10#${ver2[i]})); then
32 return 2
33 fi
34 done
35 set -u
36 return 0
37}
38
39verlte() {
40 vercomp "$1" "$2"; local res="$?"
41 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
42}
43
44verlt() {
45 vercomp "$1" "$2"; local res="$?"
46 [ "$res" -eq "2" ]
47}
48
49vergte() {
50 vercomp "$1" "$2"; local res="$?"
51 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
52}
53
54vergt() {
55 vercomp "$1" "$2"; local res="$?"
56 [ "$res" -eq "1" ]
57}
58
59verne() {
60 vercomp "$1" "$2"; local res="$?"
61 [ "$res" -ne "0" ]
62}
63
2c34ea14
MJ
64print_header() {
65 set +x
66
67 local message=" $1 "
68 local message_len
69 local padding_len
70
71 message_len="${#message}"
72 padding_len=$(( (80 - (message_len)) / 2 ))
73
74 printf '\n'; printf -- '#%.0s' {1..80}; printf '\n'
75 printf -- '-%.0s' {1..80}; printf '\n'
76 printf -- '#%.0s' $(seq 1 $padding_len); printf '%s' "$message"; printf -- '#%.0s' $(seq 1 $padding_len); printf '\n'
77 printf -- '-%.0s' {1..80}; printf '\n'
78 printf -- '#%.0s' {1..80}; printf '\n\n'
79
80 set -x
81}
82
51c9c62d
MJ
83failed_configure() {
84 # Assume we are in the configured build directory
2c34ea14 85 print_header "BEGIN config.log"
51c9c62d 86 cat config.log
2c34ea14 87 print_header "END config.log"
51c9c62d
MJ
88
89 # End the build with failure
90 exit 1
91}
92
2c34ea14
MJ
93print_header "LTTng-UST build script starting"
94
e04f80ef
MJ
95# Required variables
96WORKSPACE=${WORKSPACE:-}
97
2c34ea14 98# Axis
94a6d1fb 99platform=${platform:-}
a57a60d9
MJ
100conf=${conf:-}
101build=${build:-}
3579dc14
MJ
102cc=${cc:-}
103
2c34ea14
MJ
104# Build steps that can be overriden by the environment
105LTTNG_UST_MAKE_INSTALL="${LTTNG_UST_MAKE_INSTALL:-yes}"
106LTTNG_UST_MAKE_CLEAN="${LTTNG_UST_MAKE_CLEAN:-yes}"
107LTTNG_UST_GEN_COMPILE_COMMANDS="${LTTNG_UST_GEN_COMPILE_COMMANDS:-no}"
108LTTNG_UST_RUN_TESTS="${LTTNG_UST_RUN_TESTS:-yes}"
109LTTNG_UST_CLANG_TIDY="${LTTNG_UST_CLANG_TIDY:-no}"
a57a60d9 110
4afa623f
MJ
111SRCDIR="$WORKSPACE/src/lttng-ust"
112TMPDIR="$WORKSPACE/tmp"
113PREFIX="/build"
114LIBDIR="lib"
32dde2a3 115LIBDIR_ARCH="$LIBDIR"
4afa623f
MJ
116
117# RHEL and SLES both use lib64 but don't bother shipping a default autoconf
118# site config that matches this.
47ca4354 119if [[ ( -f /etc/redhat-release || -f /etc/products.d/SLES.prod || -f /etc/yocto-release ) ]]; then
85322e5d
MJ
120 # Detect the userspace bitness in a distro agnostic way
121 if file -L /bin/bash | grep '64-bit' >/dev/null 2>&1; then
122 LIBDIR_ARCH="${LIBDIR}64"
85322e5d 123 fi
4afa623f
MJ
124fi
125
3579dc14 126DEPS_INC="$WORKSPACE/deps/build/include"
4afa623f 127DEPS_LIB="$WORKSPACE/deps/build/$LIBDIR_ARCH"
5bd69da1 128DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
1d56e325
MJ
129#DEPS_BIN="$WORKSPACE/deps/build/bin"
130#DEPS_JAVA="$WORKSPACE/deps/build/share/java"
2b68721a 131
3579dc14 132export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
5bd69da1 133export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
3579dc14
MJ
134export CPPFLAGS="-I$DEPS_INC"
135export LDFLAGS="-L$DEPS_LIB"
c3bc676b 136
2c34ea14
MJ
137exit_status=0
138
139# Use bear to generate compile_commands.json when enabled
140BEAR=""
141if [ "$LTTNG_UST_GEN_COMPILE_COMMANDS" = "yes" ]; then
142 BEAR="bear"
143fi
144
3579dc14
MJ
145# Create tmp directory
146rm -rf "$TMPDIR"
147mkdir -p "$TMPDIR"
1f4fba8c
MJ
148
149export TMPDIR
72d087d4 150export CFLAGS="-g -O2"
2c34ea14 151export CXXFLAGS="-g -O2"
1f4fba8c 152
3579dc14
MJ
153# Set compiler variables
154case "$cc" in
155gcc)
156 export CC=gcc
157 export CXX=g++
158 ;;
2356937a
MJ
159gcc-*)
160 export CC=gcc-${cc#gcc-}
161 export CXX=g++-${cc#gcc-}
3579dc14
MJ
162 ;;
163clang)
164 export CC=clang
165 export CXX=clang++
166 ;;
2356937a
MJ
167clang-*)
168 export CC=clang-${cc#clang-}
169 export CXX=clang++-${cc#clang-}
3579dc14
MJ
170 ;;
171*)
172 if [ "x$cc" != "x" ]; then
173 export CC="$cc"
174 fi
175 ;;
176esac
177
3b3282a6 178# Set platform variables
94a6d1fb 179case "$platform" in
2356937a 180freebsd*)
0f7217a0
MJ
181 export MAKE=gmake
182 export TAR=tar
183 export NPROC="getconf _NPROCESSORS_ONLN"
184 export CPPFLAGS="-I/usr/local/include $CPPFLAGS"
185 export LDFLAGS="-L/usr/local/lib $LDFLAGS"
186 export PYTHON="python3"
187 export PYTHON_CONFIG="python3-config"
188 export CLASSPATH='/usr/local/share/java/classes/*'
e16ea2bf 189 export JAVA_HOME='/usr/local/openjdk17'
0f7217a0
MJ
190 ;;
191
3b3282a6 192*)
3579dc14
MJ
193 export MAKE=make
194 export TAR=tar
195 export NPROC=nproc
196 export PYTHON="python3"
197 export PYTHON_CONFIG="python3-config"
d956cb6e 198 export CLASSPATH='/usr/share/java/log4j-api.jar:/usr/share/java/log4j-core.jar:/usr/share/java/log4j-1.2.jar'
3579dc14 199 ;;
3b3282a6
MJ
200esac
201
dc56017a
KS
202if [[ -f /etc/products.d/SLES.prod ]] ; then
203 SLES_VERSION="$(grep -E '</version>' /etc/products.d/SLES.prod | grep -E -o '[0-9]+\.[0-9]+')"
204 if vergte "${SLES_VERSION}" "15.5" ; then
205 export CLASSPATH='/usr/share/java/log4j/log4j-api.jar:/usr/share/java/log4j/log4j-core.jar:/usr/share/java/log4j12/log4j-12.jar'
206 fi
207fi
208
51c9c62d 209# Print build env details
2c34ea14 210print_header "Build environment details"
8c956c4b 211print_hardware || true
51c9c62d
MJ
212print_os || true
213print_tooling || true
214
3579dc14
MJ
215# Enter the source directory
216cd "$SRCDIR"
c3bc676b 217
3579dc14 218# Run bootstrap in the source directory prior to configure
2c34ea14 219print_header "Bootstrap autotools"
3579dc14 220./bootstrap
ab89ec98 221
3579dc14
MJ
222# Get source version from configure script
223eval "$(grep '^PACKAGE_VERSION=' ./configure)"
1d56e325 224PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
c3bc676b 225
3579dc14
MJ
226# Set configure options and environment variables for each build
227# configuration.
2c34ea14 228CONF_OPTS=("--prefix=$PREFIX" "--libdir=$PREFIX/$LIBDIR_ARCH" "--disable-maintainer-mode")
c3bc676b 229case "$conf" in
3b3282a6 230static)
2c34ea14 231 print_header "Conf: Static lib only"
3579dc14
MJ
232
233 CONF_OPTS+=("--enable-static" "--disable-shared")
1d56e325
MJ
234
235 # Unsupported! liblttng-ust can't pull in it's static (.a) dependencies.
236 exit 1
3b3282a6
MJ
237 ;;
238
67122b96 239agents)
2c34ea14 240 print_header "Conf: Java and Python agents"
3b3282a6 241
3579dc14 242 CONF_OPTS+=("--enable-java-agent-all" "--enable-jni-interface" "--enable-python-agent")
efb13b46
MJ
243
244 # Explicitly add '--enable-java-agent-log4j2', it's not part of '-all' in stable 2.12/2.13
245 if verlt "$PACKAGE_VERSION" "2.14"; then
246 CONF_OPTS+=("--enable-java-agent-log4j2")
247 fi
3b3282a6
MJ
248 ;;
249
a76416f2 250debug-rcu)
2c34ea14
MJ
251 print_header "Conf: Enable RCU sanity checks for debugging"
252
3579dc14 253 export CPPFLAGS="${CPPFLAGS} -DDEBUG_RCU"
a76416f2
JR
254 ;;
255
c3bc676b 256*)
2c34ea14 257 print_header "Conf: Standard"
6871000c
MJ
258
259 # Something is broken in docbook-xml on yocto
260 if [[ "$platform" = yocto* ]]; then
261 CONF_OPTS+=("--disable-man-pages")
262 fi
c3bc676b
JRJ
263 ;;
264esac
265
2b68721a 266# Build type
67122b96
MJ
267# oot : out-of-tree build
268# dist : build via make dist
269# oot-dist: build via make dist out-of-tree
270# * : normal tree build
2b68721a 271#
3579dc14
MJ
272# Make sure to move to the build directory and run configure
273# before continuing.
2b68721a 274case "$build" in
3b3282a6 275oot)
2c34ea14 276 print_header "Build: Out of tree"
67122b96 277
3579dc14
MJ
278 # Create and enter a temporary build directory
279 builddir=$(mktemp -d)
280 cd "$builddir"
67122b96 281
51c9c62d 282 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
3b3282a6
MJ
283 ;;
284
285dist)
2c34ea14 286 print_header "Build: Distribution In-tree"
3b3282a6 287
3579dc14
MJ
288 # Run configure and generate the tar file
289 # in the source directory
0b93ba40 290 ./configure --enable-jni-interface || failed_configure
3b3282a6
MJ
291 $MAKE dist
292
3579dc14
MJ
293 # Create and enter a temporary build directory
294 builddir=$(mktemp -d)
295 cd "$builddir"
3b3282a6 296
3579dc14
MJ
297 # Extract the distribution tar in the build directory,
298 # ignore the first directory level
299 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
3b3282a6 300
67122b96 301 # Build in extracted source tree
51c9c62d 302 ./configure "${CONF_OPTS[@]}" || failed_configure
3b3282a6
MJ
303 ;;
304
67122b96 305oot-dist)
2c34ea14 306 print_header "Build: Distribution Out of tree"
67122b96 307
3579dc14
MJ
308 # Create and enter a temporary build directory
309 builddir=$(mktemp -d)
310 cd "$builddir"
311
312 # Run configure out of tree and generate the tar file
0b93ba40 313 "$SRCDIR/configure" --enable-jni-interface || failed_configure
67122b96
MJ
314 $MAKE dist
315
3579dc14
MJ
316 dist_srcdir="$(mktemp -d)"
317 cd "$dist_srcdir"
67122b96 318
3579dc14
MJ
319 # Extract the distribution tar in the new source directory,
320 # ignore the first directory level
321 $TAR xvf "$builddir"/*.tar.* --strip 1
67122b96 322
3579dc14
MJ
323 # Create and enter a second temporary build directory
324 builddir="$(mktemp -d)"
325 cd "$builddir"
67122b96 326
3579dc14
MJ
327 # Run configure from the extracted distribution tar,
328 # out of the source tree
51c9c62d 329 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
67122b96
MJ
330 ;;
331
3b3282a6 332*)
2c34ea14
MJ
333 print_header "Build: Standard In-tree"
334
51c9c62d 335 ./configure "${CONF_OPTS[@]}" || failed_configure
3b3282a6 336 ;;
2b68721a
MJ
337esac
338
3579dc14
MJ
339# We are now inside a configured build directory
340
3b3282a6 341# BUILD!
2c34ea14
MJ
342print_header "BUILD!"
343$BEAR ${BEAR:+--} $MAKE -j "$($NPROC)" V=1
344
345# Install in the workspace if enabled
346if [ "$LTTNG_UST_MAKE_INSTALL" = "yes" ]; then
347 print_header "Install"
348
349 $MAKE install V=1 DESTDIR="$WORKSPACE"
350
351 # Cleanup rpath in executables and shared libraries
352 #find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
353 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.so" -exec chrpath --delete {} \;
354
355 # Remove libtool .la files
356 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.la" -delete
357fi
358
359# Run clang-tidy on the topmost commit
360if [ "$LTTNG_UST_CLANG_TIDY" = "yes" ]; then
361 print_header "Run clang-tidy"
c3bc676b 362
2c34ea14
MJ
363 # This would be better by linting only the lines touched by a patch but it
364 # doesn't seem to work, the lines are always filtered and no error is
365 # reported.
366 #git diff -U0 HEAD^ | clang-tidy-diff -p1 -j "$($NPROC)" -timeout 60 -fix
367
368 # Instead, run clan-tidy on all the files touched by the patch.
369 while read -r filepath; do
370 if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
371 clang-tidy --fix-errors "$(realpath "$filepath")"
372 fi
373 done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
374
375 # If the tree has local changes, the formatting was incorrect
376 GIT_DIFF_OUTPUT=$(git diff)
377 if [ -n "$GIT_DIFF_OUTPUT" ]; then
378 echo "Saving clang-tidy proposed fixes in clang-tidy-fixes.diff"
379 git diff > "$WORKSPACE/clang-tidy-fixes.diff"
380
381 # Restore the unfixed files so they can be viewed in the warnings web
382 # interface
383 git checkout .
384 exit_status=1
385 fi
386fi
3579dc14
MJ
387
388# Run tests, don't fail now, we want to run the archiving steps
aff4e3d1 389if [ "$LTTNG_UST_RUN_TESTS" = "yes" ]; then
2c34ea14 390 $MAKE --keep-going check || exit_status=1
c3bc676b 391
aff4e3d1
JR
392 # Copy tap logs for the jenkins tap parser before cleaning the build dir
393 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
c3bc676b 394
4174b905
MJ
395 # Copy the test suites top-level log which includes all tests failures
396 rsync -a --include 'test-suite.log' --include '*/' --exclude='*' tests/ "$WORKSPACE/log"
0fe4a4b4
MJ
397fi
398
1f4fba8c 399# Clean the build directory
2c34ea14
MJ
400if [ "$LTTNG_UST_MAKE_CLEAN" = "yes" ]; then
401 print_header "Clean"
c3bc676b 402
2c34ea14
MJ
403 $MAKE clean
404fi
3b3282a6 405
2c34ea14 406print_header "LTTng-UST build script ended with: $(test $exit_status == 0 && echo SUCCESS || echo FAILURE)"
2b68721a 407
1d56e325 408# Exit with failure if any of the tests failed
2c34ea14 409exit $exit_status
3b3282a6
MJ
410
411# EOF
2c34ea14 412# vim: expandtab tabstop=4 shiftwidth=4
This page took 0.053858 seconds and 4 git commands to generate.