jjb: coverity: fix: cache the tool installer
[lttng-ci.git] / scripts / lttng-ust / build.sh
CommitLineData
51c9c62d 1#!/bin/bash
2b68721a 2#
3579dc14
MJ
3# Copyright (C) 2015 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4# 2016-2019 Michael Jeanson <mjeanson@efficios.com>
2b68721a
MJ
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
51c9c62d
MJ
19set -exu
20
3579dc14
MJ
21# Version compare functions
22vercomp () {
23 set +u
24 if [[ "$1" == "$2" ]]; then
25 return 0
26 fi
27 local IFS=.
4afa623f
MJ
28 # Ignore the shellcheck warning, we want splitting to happen based on IFS.
29 # shellcheck disable=SC2206
3579dc14
MJ
30 local i ver1=($1) ver2=($2)
31 # fill empty fields in ver1 with zeros
32 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
33 ver1[i]=0
34 done
35 for ((i=0; i<${#ver1[@]}; i++)); do
36 if [[ -z ${ver2[i]} ]]; then
37 # fill empty fields in ver2 with zeros
38 ver2[i]=0
39 fi
40 if ((10#${ver1[i]} > 10#${ver2[i]})); then
41 return 1
42 fi
43 if ((10#${ver1[i]} < 10#${ver2[i]})); then
44 return 2
45 fi
46 done
47 set -u
48 return 0
49}
50
51verlte() {
52 vercomp "$1" "$2"; local res="$?"
53 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
54}
55
56verlt() {
57 vercomp "$1" "$2"; local res="$?"
58 [ "$res" -eq "2" ]
59}
60
61vergte() {
62 vercomp "$1" "$2"; local res="$?"
63 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
64}
65
66vergt() {
67 vercomp "$1" "$2"; local res="$?"
68 [ "$res" -eq "1" ]
69}
70
71verne() {
72 vercomp "$1" "$2"; local res="$?"
73 [ "$res" -ne "0" ]
74}
75
51c9c62d
MJ
76failed_configure() {
77 # Assume we are in the configured build directory
78 echo "#################### BEGIN config.log ####################"
79 cat config.log
80 echo "#################### END config.log ####################"
81
82 # End the build with failure
83 exit 1
84}
85
e04f80ef
MJ
86# Required variables
87WORKSPACE=${WORKSPACE:-}
88
94a6d1fb 89platform=${platform:-}
a57a60d9
MJ
90conf=${conf:-}
91build=${build:-}
3579dc14
MJ
92cc=${cc:-}
93
aff4e3d1
JR
94# Controls if the tests are run
95LTTNG_UST_RUN_TESTS="${LTTNG_UST_RUN_TESTS:=yes}"
a57a60d9 96
4afa623f
MJ
97SRCDIR="$WORKSPACE/src/lttng-ust"
98TMPDIR="$WORKSPACE/tmp"
99PREFIX="/build"
100LIBDIR="lib"
101
102# RHEL and SLES both use lib64 but don't bother shipping a default autoconf
103# site config that matches this.
104if [[ ( -f /etc/redhat-release || -f /etc/SuSE-release ) && ( "$(uname -m)" == "x86_64" ) ]]; then
105 LIBDIR_ARCH="${LIBDIR}64"
106else
107 LIBDIR_ARCH="$LIBDIR"
108fi
109
3579dc14 110DEPS_INC="$WORKSPACE/deps/build/include"
4afa623f 111DEPS_LIB="$WORKSPACE/deps/build/$LIBDIR_ARCH"
5bd69da1 112DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
1d56e325
MJ
113#DEPS_BIN="$WORKSPACE/deps/build/bin"
114#DEPS_JAVA="$WORKSPACE/deps/build/share/java"
2b68721a 115
3579dc14 116export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
5bd69da1 117export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
3579dc14
MJ
118export CPPFLAGS="-I$DEPS_INC"
119export LDFLAGS="-L$DEPS_LIB"
c3bc676b 120
3579dc14
MJ
121# Create tmp directory
122rm -rf "$TMPDIR"
123mkdir -p "$TMPDIR"
1f4fba8c
MJ
124
125export TMPDIR
72d087d4 126export CFLAGS="-g -O2"
1f4fba8c 127
3579dc14
MJ
128# Set compiler variables
129case "$cc" in
130gcc)
131 export CC=gcc
132 export CXX=g++
133 ;;
2356937a
MJ
134gcc-*)
135 export CC=gcc-${cc#gcc-}
136 export CXX=g++-${cc#gcc-}
3579dc14
MJ
137 ;;
138clang)
139 export CC=clang
140 export CXX=clang++
141 ;;
2356937a
MJ
142clang-*)
143 export CC=clang-${cc#clang-}
144 export CXX=clang++-${cc#clang-}
3579dc14
MJ
145 ;;
146*)
147 if [ "x$cc" != "x" ]; then
148 export CC="$cc"
149 fi
150 ;;
151esac
152
153if [ "x${CC:-}" != "x" ]; then
154 echo "Selected compiler:"
155 "$CC" -v
156fi
157
3b3282a6 158# Set platform variables
94a6d1fb 159case "$platform" in
2356937a 160freebsd*)
0f7217a0
MJ
161 export MAKE=gmake
162 export TAR=tar
163 export NPROC="getconf _NPROCESSORS_ONLN"
164 export CPPFLAGS="-I/usr/local/include $CPPFLAGS"
165 export LDFLAGS="-L/usr/local/lib $LDFLAGS"
166 export PYTHON="python3"
167 export PYTHON_CONFIG="python3-config"
168 export CLASSPATH='/usr/local/share/java/classes/*'
df63a3ac 169 export JAVA_HOME='/usr/local/openjdk11'
0f7217a0
MJ
170 ;;
171
3b3282a6 172*)
3579dc14
MJ
173 export MAKE=make
174 export TAR=tar
175 export NPROC=nproc
176 export PYTHON="python3"
177 export PYTHON_CONFIG="python3-config"
d956cb6e 178 export CLASSPATH='/usr/share/java/log4j-api.jar:/usr/share/java/log4j-core.jar:/usr/share/java/log4j-1.2.jar'
3579dc14 179 ;;
3b3282a6
MJ
180esac
181
51c9c62d
MJ
182# Print build env details
183print_os || true
184print_tooling || true
185
3579dc14
MJ
186# Enter the source directory
187cd "$SRCDIR"
c3bc676b 188
3579dc14
MJ
189# Run bootstrap in the source directory prior to configure
190./bootstrap
ab89ec98 191
3579dc14
MJ
192# Get source version from configure script
193eval "$(grep '^PACKAGE_VERSION=' ./configure)"
1d56e325 194PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
c3bc676b 195
0b93ba40
MJ
196# Gerrit will trigger build on FreeBSD regardless of the branch, exit
197# successfuly when the version is < 2.13.
94a6d1fb 198if [[ $platform == freebsd* ]] && verlt "$PACKAGE_VERSION" "2.13"; then
0b93ba40
MJ
199 mkdir -p "$WORKSPACE/tap/no-log"
200 echo "1..1" > "$WORKSPACE/tap/no-log/tests.log"
201 echo "ok 1 - FreeBSD build unsupported in < 2.13" >> "$WORKSPACE/tap/no-log/tests.log"
202 exit 0
203fi
204
3579dc14
MJ
205# Set configure options and environment variables for each build
206# configuration.
4afa623f 207CONF_OPTS=("--prefix=$PREFIX" "--libdir=$PREFIX/$LIBDIR_ARCH")
c3bc676b 208case "$conf" in
3b3282a6 209static)
3579dc14
MJ
210 echo "Static lib only configuration"
211
212 CONF_OPTS+=("--enable-static" "--disable-shared")
1d56e325
MJ
213
214 # Unsupported! liblttng-ust can't pull in it's static (.a) dependencies.
215 exit 1
3b3282a6
MJ
216 ;;
217
67122b96 218agents)
3579dc14 219 echo "Java and Python agents configuration"
3b3282a6 220
3579dc14 221 CONF_OPTS+=("--enable-java-agent-all" "--enable-jni-interface" "--enable-python-agent")
efb13b46
MJ
222
223 # Explicitly add '--enable-java-agent-log4j2', it's not part of '-all' in stable 2.12/2.13
224 if verlt "$PACKAGE_VERSION" "2.14"; then
225 CONF_OPTS+=("--enable-java-agent-log4j2")
226 fi
3b3282a6
MJ
227 ;;
228
a76416f2
JR
229debug-rcu)
230 echo "Enable RCU sanity checks for debugging"
3579dc14 231 export CPPFLAGS="${CPPFLAGS} -DDEBUG_RCU"
a76416f2
JR
232 ;;
233
c3bc676b 234*)
3579dc14 235 echo "Standard configuration"
c3bc676b
JRJ
236 ;;
237esac
238
2b68721a 239# Build type
67122b96
MJ
240# oot : out-of-tree build
241# dist : build via make dist
242# oot-dist: build via make dist out-of-tree
243# * : normal tree build
2b68721a 244#
3579dc14
MJ
245# Make sure to move to the build directory and run configure
246# before continuing.
2b68721a 247case "$build" in
3b3282a6
MJ
248oot)
249 echo "Out of tree build"
67122b96 250
3579dc14
MJ
251 # Create and enter a temporary build directory
252 builddir=$(mktemp -d)
253 cd "$builddir"
67122b96 254
51c9c62d 255 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
3b3282a6
MJ
256 ;;
257
258dist)
3579dc14 259 echo "Distribution in-tree build"
3b3282a6 260
3579dc14
MJ
261 # Run configure and generate the tar file
262 # in the source directory
0b93ba40 263 ./configure --enable-jni-interface || failed_configure
3b3282a6
MJ
264 $MAKE dist
265
3579dc14
MJ
266 # Create and enter a temporary build directory
267 builddir=$(mktemp -d)
268 cd "$builddir"
3b3282a6 269
3579dc14
MJ
270 # Extract the distribution tar in the build directory,
271 # ignore the first directory level
272 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
3b3282a6 273
67122b96 274 # Build in extracted source tree
51c9c62d 275 ./configure "${CONF_OPTS[@]}" || failed_configure
3b3282a6
MJ
276 ;;
277
67122b96 278oot-dist)
3579dc14 279 echo "Distribution out of tree build"
67122b96 280
3579dc14
MJ
281 # Create and enter a temporary build directory
282 builddir=$(mktemp -d)
283 cd "$builddir"
284
285 # Run configure out of tree and generate the tar file
0b93ba40 286 "$SRCDIR/configure" --enable-jni-interface || failed_configure
67122b96
MJ
287 $MAKE dist
288
3579dc14
MJ
289 dist_srcdir="$(mktemp -d)"
290 cd "$dist_srcdir"
67122b96 291
3579dc14
MJ
292 # Extract the distribution tar in the new source directory,
293 # ignore the first directory level
294 $TAR xvf "$builddir"/*.tar.* --strip 1
67122b96 295
3579dc14
MJ
296 # Create and enter a second temporary build directory
297 builddir="$(mktemp -d)"
298 cd "$builddir"
67122b96 299
3579dc14
MJ
300 # Run configure from the extracted distribution tar,
301 # out of the source tree
51c9c62d 302 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
67122b96
MJ
303 ;;
304
3b3282a6 305*)
1f4fba8c 306 echo "Standard in-tree build"
51c9c62d 307 ./configure "${CONF_OPTS[@]}" || failed_configure
3b3282a6 308 ;;
2b68721a
MJ
309esac
310
3579dc14
MJ
311# We are now inside a configured build directory
312
3b3282a6 313# BUILD!
a57a60d9 314$MAKE -j "$($NPROC)" V=1
c3bc676b 315
3579dc14
MJ
316# Install in the workspace
317$MAKE install DESTDIR="$WORKSPACE"
318
319# Run tests, don't fail now, we want to run the archiving steps
1d56e325 320failed_tests=0
aff4e3d1
JR
321if [ "$LTTNG_UST_RUN_TESTS" = "yes" ]; then
322 $MAKE --keep-going check || failed_tests=1
c3bc676b 323
aff4e3d1
JR
324 # Copy tap logs for the jenkins tap parser before cleaning the build dir
325 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
c3bc676b 326
aff4e3d1
JR
327 # The test suite prior to 2.8 did not produce TAP logs
328 if verlt "$PACKAGE_VERSION" "2.8"; then
329 mkdir -p "$WORKSPACE/tap/no-log"
330 echo "1..1" > "$WORKSPACE/tap/no-log/tests.log"
331 echo "ok 1 - Test suite doesn't support logging" >> "$WORKSPACE/tap/no-log/tests.log"
332 fi
0fe4a4b4
MJ
333fi
334
1f4fba8c 335# Clean the build directory
3b3282a6 336$MAKE clean
c3bc676b 337
3b3282a6 338# Cleanup rpath in executables and shared libraries
1d56e325 339#find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
4afa623f 340find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.so" -exec chrpath --delete {} \;
3b3282a6
MJ
341
342# Remove libtool .la files
4afa623f 343find "$WORKSPACE/$PREFIX/$LIBDIR_ARCH" -name "*.la" -exec rm -f {} \;
2b68721a 344
1d56e325
MJ
345# Exit with failure if any of the tests failed
346exit $failed_tests
3b3282a6
MJ
347
348# EOF
This page took 0.047075 seconds and 4 git commands to generate.