jjb: normand: use virtualenv instead of venv
[lttng-ci.git] / scripts / liburcu / build.sh
CommitLineData
51c9c62d 1#!/bin/bash
e3022ad9 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
e3022ad9 6
51c9c62d
MJ
7set -exu
8
5fd8db76 9# Version compare functions
0a6e708b
MJ
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
0a6e708b
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
5fd8db76 39verlte() {
0a6e708b
MJ
40 vercomp "$1" "$2"; local res="$?"
41 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
5fd8db76
MJ
42}
43
44verlt() {
0a6e708b
MJ
45 vercomp "$1" "$2"; local res="$?"
46 [ "$res" -eq "2" ]
5fd8db76
MJ
47}
48
49vergte() {
0a6e708b
MJ
50 vercomp "$1" "$2"; local res="$?"
51 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
5fd8db76
MJ
52}
53
54vergt() {
0a6e708b
MJ
55 vercomp "$1" "$2"; local res="$?"
56 [ "$res" -eq "1" ]
57}
58
59verne() {
60 vercomp "$1" "$2"; local res="$?"
61 [ "$res" -ne "0" ]
5fd8db76
MJ
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 "Liburcu build script starting"
94
1d56e325
MJ
95# Required variables
96WORKSPACE=${WORKSPACE:-}
97
2c34ea14 98# Axis
1794bc79 99platform=${platform:-}
a57a60d9
MJ
100conf=${conf:-}
101build=${build:-}
1d56e325 102cc=${cc:-}
a57a60d9 103
2c34ea14
MJ
104# Build steps that can be overriden by the environment
105USERSPACE_RCU_MAKE_INSTALL="${USERSPACE_RCU_MAKE_INSTALL:-yes}"
106USERSPACE_RCU_MAKE_CLEAN="${USERSPACE_RCU_MAKE_CLEAN:-yes}"
107USERSPACE_RCU_GEN_COMPILE_COMMANDS="${USERSPACE_RCU_GEN_COMPILE_COMMANDS:-no}"
108USERSPACE_RCU_RUN_TESTS="${USERSPACE_RCU_RUN_TESTS:-yes}"
109USERSPACE_RCU_CLANG_TIDY="${USERSPACE_RCU_CLANG_TIDY:-no}"
e3022ad9 110
6d35c326
MJ
111SRCDIR="$WORKSPACE/src/liburcu"
112TMPDIR="$WORKSPACE/tmp"
1d56e325 113PREFIX="/build"
4afa623f 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 124fi
69d7af71 125
2c34ea14
MJ
126exit_status=0
127
128# Use bear to generate compile_commands.json when enabled
129BEAR=""
130if [ "$USERSPACE_RCU_GEN_COMPILE_COMMANDS" = "yes" ]; then
131 BEAR="bear"
132fi
133
1d56e325
MJ
134# Create tmp directory
135rm -rf "$TMPDIR"
136mkdir -p "$TMPDIR"
6d35c326
MJ
137
138export TMPDIR
72d087d4 139export CFLAGS="-g -O2"
2c34ea14 140export CXXFLAGS="-g -O2"
6d35c326 141
1d56e325
MJ
142# Set compiler variables
143case "$cc" in
144gcc)
145 export CC=gcc
146 export CXX=g++
147 ;;
d954b6a8
MJ
148gcc-*)
149 export CC=gcc-${cc#gcc-}
150 export CXX=g++-${cc#gcc-}
1d56e325
MJ
151 ;;
152clang)
153 export CC=clang
154 export CXX=clang++
155 ;;
d954b6a8
MJ
156clang-*)
157 export CC=clang-${cc#clang-}
158 export CXX=clang++-${cc#clang-}
1d56e325
MJ
159 ;;
160*)
161 if [ "x$cc" != "x" ]; then
162 export CC="$cc"
163 fi
164 ;;
165esac
166
72f4f0c1 167# Set platform variables
1794bc79 168case "$platform" in
f0d7e5b1 169macos*)
995ac8f2
MJ
170 export MAKE=make
171 export TAR=tar
172 export NPROC="getconf _NPROCESSORS_ONLN"
f7bf4d7a 173 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
1d56e325
MJ
174 export CPPFLAGS="-I/opt/local/include"
175 export LDFLAGS="-L/opt/local/lib"
00f7bb3f
MJ
176 export PYTHON="python3"
177 export PYTHON_CONFIG="python3-config"
f7bf4d7a
MJ
178 ;;
179
d954b6a8 180freebsd*)
6ad0e7e6
MJ
181 export MAKE=gmake
182 export TAR=tar
183 export NPROC="getconf _NPROCESSORS_ONLN"
184 export CPPFLAGS="-I/usr/local/include"
185 export LDFLAGS="-L/usr/local/lib"
186 export PYTHON="python3"
187 export PYTHON_CONFIG="python3-config"
188 ;;
189
7491c28d 190*)
995ac8f2
MJ
191 export MAKE=make
192 export TAR=tar
193 export NPROC=nproc
1d56e325
MJ
194 export PYTHON="python3"
195 export PYTHON_CONFIG="python3-config"
7491c28d
MJ
196 ;;
197esac
198
51c9c62d 199# Print build env details
2c34ea14 200print_header "Build environment details"
51c9c62d
MJ
201print_os || true
202print_tooling || true
203
cd9733d5
JR
204# Enter the source directory
205cd "$SRCDIR"
206
207# Run bootstrap in the source directory prior to configure
2c34ea14 208print_header "Bootstrap autotools"
cd9733d5
JR
209./bootstrap
210
211# Get source version from configure script
212eval "$(grep '^PACKAGE_VERSION=' ./configure)"
1d56e325 213PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
cd9733d5
JR
214
215# Set configure options and environment variables for each build
216# configuration.
2c34ea14 217CONF_OPTS=("--prefix=$PREFIX" "--libdir=$PREFIX/$LIBDIR_ARCH" "--disable-maintainer-mode")
56162e2a
JRJ
218case "$conf" in
219static)
2c34ea14 220 print_header "Conf: Static lib only"
1d56e325
MJ
221
222 CONF_OPTS+=("--enable-static" "--disable-shared")
56162e2a 223 ;;
72f4f0c1 224
a57a60d9 225tls_fallback)
2c34ea14
MJ
226 print_header "Conf: Use pthread_getspecific() to emulate TLS"
227
1d56e325 228 CONF_OPTS+=("--disable-compiler-tls")
56162e2a 229 ;;
72f4f0c1 230
cd9733d5 231debug-rcu)
2c34ea14
MJ
232 print_header "Conf: Enable RCU sanity checks for debugging"
233
a0493692 234 if vergte "$PACKAGE_VERSION" "0.10"; then
1d56e325 235 CONF_OPTS+=("--enable-rcu-debug")
cd9733d5 236 else
72d087d4 237 export CFLAGS="$CFLAGS -DDEBUG_RCU"
cd9733d5 238 fi
25e13783
JR
239
240 echo "Enable iterator sanity validator"
241 if vergte "$PACKAGE_VERSION" "0.11"; then
1d56e325 242 CONF_OPTS+=("--enable-cds-lfht-iter-debug")
25e13783 243 fi
cd9733d5
JR
244 ;;
245
5e1966cf
MJ
246atomic-builtins)
247 print_header "Conf: Enable the use of compiler atomic builtins."
248
249 CONF_OPTS+=("--enable-compiler-atomic-builtins")
250 ;;
251
56162e2a 252*)
2c34ea14 253 print_header "Conf: Standard"
56162e2a
JRJ
254 ;;
255esac
256
595a34c7 257# Build type
1d56e325
MJ
258# oot : out-of-tree build
259# dist : build via make dist
260# oot-dist: build via make dist out-of-tree
261# * : normal tree build
595a34c7 262#
1d56e325 263# Make sure to move to the build directory and run configure
69d7af71 264# before continuing.
595a34c7 265case "$build" in
72f4f0c1 266oot)
2c34ea14 267 print_header "Build: Out of tree"
69d7af71 268
1d56e325
MJ
269 # Create and enter a temporary build directory
270 builddir=$(mktemp -d)
271 cd "$builddir"
69d7af71 272
51c9c62d 273 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
72f4f0c1
MJ
274 ;;
275
276dist)
2c34ea14 277 print_header "Build: Distribution In-tree"
1d56e325
MJ
278
279 # Run configure and generate the tar file
280 # in the source directory
51c9c62d 281 ./configure || failed_configure
1d56e325
MJ
282 $MAKE dist
283
284 # Create and enter a temporary build directory
285 builddir=$(mktemp -d)
286 cd "$builddir"
287
288 # Extract the distribution tar in the build directory,
289 # ignore the first directory level
290 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
291
292 # Build in extracted source tree
51c9c62d 293 ./configure "${CONF_OPTS[@]}" || failed_configure
1d56e325
MJ
294 ;;
295
296oot-dist)
2c34ea14 297 print_header "Build: Distribution Out of tree"
72f4f0c1 298
1d56e325
MJ
299 # Create and enter a temporary build directory
300 builddir=$(mktemp -d)
301 cd "$builddir"
69d7af71 302
1d56e325 303 # Run configure out of tree and generate the tar file
51c9c62d 304 "$SRCDIR/configure" || failed_configure
72f4f0c1
MJ
305 $MAKE dist
306
1d56e325
MJ
307 dist_srcdir="$(mktemp -d)"
308 cd "$dist_srcdir"
72f4f0c1 309
1d56e325
MJ
310 # Extract the distribution tar in the new source directory,
311 # ignore the first directory level
312 $TAR xvf "$builddir"/*.tar.* --strip 1
72f4f0c1 313
1d56e325
MJ
314 # Create and enter a second temporary build directory
315 builddir="$(mktemp -d)"
316 cd "$builddir"
317
318 # Run configure from the extracted distribution tar,
319 # out of the source tree
51c9c62d 320 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
72f4f0c1 321 ;;
1d56e325 322
72f4f0c1 323*)
2c34ea14
MJ
324 print_header "Build: Standard In-tree"
325
51c9c62d 326 ./configure "${CONF_OPTS[@]}" || failed_configure
72f4f0c1 327 ;;
595a34c7
JR
328esac
329
1d56e325
MJ
330# We are now inside a configured build directory
331
72f4f0c1 332# BUILD!
2c34ea14
MJ
333print_header "BUILD!"
334$BEAR ${BEAR:+--} $MAKE -j "$($NPROC)" V=1
335
336# Install in the workspace if enabled
337if [ "$USERSPACE_RCU_MAKE_INSTALL" = "yes" ]; then
338 print_header "Install"
339
340 $MAKE install V=1 DESTDIR="$WORKSPACE"
341
342 # Cleanup rpath in executables and shared libraries
343 #find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
344 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.so" -exec chrpath --delete {} \;
345
346 # Remove libtool .la files
347 find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.la" -delete
348fi
349
350# Run clang-tidy on the topmost commit
351if [ "$USERSPACE_RCU_CLANG_TIDY" = "yes" ]; then
352 print_header "Run clang-tidy"
72f4f0c1 353
2c34ea14
MJ
354 # This would be better by linting only the lines touched by a patch but it
355 # doesn't seem to work, the lines are always filtered and no error is
356 # reported.
357 #git diff -U0 HEAD^ | clang-tidy-diff -p1 -j "$($NPROC)" -timeout 60 -fix
1d56e325 358
2c34ea14
MJ
359 # Instead, run clan-tidy on all the files touched by the patch.
360 while read -r filepath; do
361 if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
362 clang-tidy --fix-errors "$(realpath "$filepath")"
363 fi
364 done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
365
366 # If the tree has local changes, the formatting was incorrect
367 GIT_DIFF_OUTPUT=$(git diff)
368 if [ -n "$GIT_DIFF_OUTPUT" ]; then
369 echo "Saving clang-tidy proposed fixes in clang-tidy-fixes.diff"
370 git diff > "$WORKSPACE/clang-tidy-fixes.diff"
371
372 # Restore the unfixed files so they can be viewed in the warnings web
373 # interface
374 git checkout .
375 exit_status=1
376 fi
377fi
378
379# Run tests if enabled
aff4e3d1 380if [ "$USERSPACE_RCU_RUN_TESTS" = "yes" ]; then
2c34ea14
MJ
381 print_header "Run test suite"
382
383 # Run tests, don't fail now, we want to run the archiving steps
384 $MAKE --keep-going check || exit_status=1
385
aff4e3d1
JR
386 # Only run regtest for 0.9 and up
387 if vergte "$PACKAGE_VERSION" "0.9"; then
2c34ea14 388 $MAKE --keep-going regtest || exit_status=1
aff4e3d1 389 fi
72f4f0c1 390
aff4e3d1
JR
391 # Copy tap logs for the jenkins tap parser before cleaning the build dir
392 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
69d7af71 393
4174b905
MJ
394 # Copy the test suites top-level log which includes all tests failures
395 rsync -a --include 'test-suite.log' --include '*/' --exclude='*' tests/ "$WORKSPACE/log"
396
aff4e3d1
JR
397 # The test suite prior to 0.11 did not produce TAP logs
398 if verlt "$PACKAGE_VERSION" "0.11"; then
399 mkdir -p "$WORKSPACE/tap/no-log"
400 echo "1..1" > "$WORKSPACE/tap/no-log/tests.log"
401 echo "ok 1 - Test suite doesn't support logging" >> "$WORKSPACE/tap/no-log/tests.log"
402 fi
e5d878d8
MJ
403fi
404
1d56e325 405# Clean the build directory
2c34ea14
MJ
406if [ "$USERSPACE_RCU_MAKE_CLEAN" = "yes" ]; then
407 print_header "Clean"
408 $MAKE clean
409fi
72f4f0c1 410
2c34ea14 411print_header "Liburcu build script ended with: $(test $exit_status == 0 && echo SUCCESS || echo FAILURE)"
595a34c7 412
1d56e325 413# Exit with failure if any of the tests failed
2c34ea14 414exit $exit_status
7491c28d
MJ
415
416# EOF
2c34ea14 417# vim: expandtab tabstop=4 shiftwidth=4
This page took 0.050838 seconds and 4 git commands to generate.