jjb: Add env and os details printing to build jobs
[lttng-ci.git] / scripts / babeltrace / build.sh
CommitLineData
51c9c62d 1#!/bin/bash
890bff23 2#
9d56171a 3# Copyright (C) 2015 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
51c9c62d 4# Copyright (C) 2016-2020 Michael Jeanson <mjeanson@efficios.com>
890bff23
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
a0b535b2
MJ
21# Version compare functions
22vercomp () {
23 set +u
24 if [[ "$1" == "$2" ]]; then
25 return 0
26 fi
27 local IFS=.
28 local i ver1=($1) ver2=($2)
29 # fill empty fields in ver1 with zeros
30 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
31 ver1[i]=0
32 done
33 for ((i=0; i<${#ver1[@]}; i++)); do
34 if [[ -z ${ver2[i]} ]]; then
35 # fill empty fields in ver2 with zeros
36 ver2[i]=0
37 fi
38 if ((10#${ver1[i]} > 10#${ver2[i]})); then
39 return 1
40 fi
41 if ((10#${ver1[i]} < 10#${ver2[i]})); then
42 return 2
43 fi
44 done
45 set -u
46 return 0
47}
48
49verlte() {
50 vercomp "$1" "$2"; local res="$?"
51 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
52}
53
54verlt() {
55 vercomp "$1" "$2"; local res="$?"
56 [ "$res" -eq "2" ]
57}
58
59vergte() {
60 vercomp "$1" "$2"; local res="$?"
61 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
62}
63
64vergt() {
65 vercomp "$1" "$2"; local res="$?"
66 [ "$res" -eq "1" ]
67}
68
69verne() {
70 vercomp "$1" "$2"; local res="$?"
71 [ "$res" -ne "0" ]
72}
73
51c9c62d
MJ
74failed_configure() {
75 # Assume we are in the configured build directory
76 echo "#################### BEGIN config.log ####################"
77 cat config.log
78 echo "#################### END config.log ####################"
79 exit 1
80}
81
82
07dafe32
MJ
83# Required variables
84WORKSPACE=${WORKSPACE:-}
85
a57a60d9
MJ
86arch=${arch:-}
87conf=${conf:-}
88build=${build:-}
6476f917 89cc=${cc:-}
a57a60d9 90
c56b9301 91
e6be9fb0
MJ
92SRCDIR="$WORKSPACE/src/babeltrace"
93TMPDIR="$WORKSPACE/tmp"
07dafe32 94PREFIX="/build"
275b59d2 95
07dafe32
MJ
96# Create tmp directory
97rm -rf "$TMPDIR"
98mkdir -p "$TMPDIR"
e6be9fb0 99
0e9967db 100export TMPDIR
72d087d4 101export CFLAGS="-g -O2"
0e9967db 102
6476f917
MJ
103# Set compiler variables
104case "$cc" in
105gcc)
106 export CC=gcc
107 export CXX=g++
108 ;;
109gcc-4.8)
110 export CC=gcc-4.8
111 export CXX=g++-4.8
112 ;;
113gcc-5)
114 export CC=gcc-5
115 export CXX=g++-5
116 ;;
117gcc-6)
118 export CC=gcc-6
119 export CXX=g++-6
120 ;;
121gcc-7)
122 export CC=gcc-7
123 export CXX=g++-7
124 ;;
125gcc-8)
126 export CC=gcc-8
127 export CXX=g++-8
128 ;;
129clang)
130 export CC=clang
131 export CXX=clang++
132 ;;
133clang-3.9)
134 export CC=clang-3.9
135 export CXX=clang++-3.9
136 ;;
137clang-4.0)
138 export CC=clang-4.0
139 export CXX=clang++-4.0
140 ;;
141clang-5.0)
142 export CC=clang-5.0
143 export CXX=clang++-5.0
144 ;;
145clang-6.0)
146 export CC=clang-6.0
147 export CXX=clang++-6.0
148 ;;
149clang-7)
150 export CC=clang-7
151 export CXX=clang++-7
152 ;;
153*)
154 if [ "x$cc" != "x" ]; then
155 export CC="$cc"
156 fi
157 ;;
158esac
159
1183a118 160if [ "x${CC:-}" != "x" ]; then
6476f917
MJ
161 echo "Selected compiler:"
162 "$CC" -v
163fi
164
c56b9301 165# Set platform variables
87e41bca 166case "$arch" in
a0b535b2
MJ
167sol10-i386)
168 export MAKE=gmake
169 export TAR=gtar
170 export NPROC=gnproc
ad11244c 171 export PATH="/opt/csw/bin:/usr/ccs/bin:$PATH"
a0b535b2
MJ
172 export CPPFLAGS="-I/opt/csw/include"
173 export LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib"
174 export PKG_CONFIG_PATH="/opt/csw/lib/pkgconfig"
1f620ba0
MJ
175 export PYTHON="python3"
176 export PYTHON_CONFIG="python3-config"
87e41bca 177 ;;
07dafe32 178
a0b535b2
MJ
179sol11-i386)
180 export MAKE=gmake
181 export TAR=gtar
182 export NPROC=nproc
f2cd0939 183 export PATH="/opt/csw/bin:$PATH:/usr/perl5/bin"
cd808c9e
MJ
184 export LD_ALTEXEC=/usr/bin/gld
185 export LD=/usr/bin/gld
1f620ba0
MJ
186 export PYTHON="python3"
187 export PYTHON_CONFIG="python3-config"
f2cd0939 188 export PKG_CONFIG_PATH="/usr/lib/pkgconfig"
87e41bca 189 ;;
07dafe32 190
221450b6 191macosx)
a0b535b2
MJ
192 export MAKE=make
193 export TAR=tar
194 export NPROC="getconf _NPROCESSORS_ONLN"
221450b6 195 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
07dafe32 196 export CPPFLAGS="-I/opt/local/include"
221450b6 197 export LDFLAGS="-L/opt/local/lib"
1f620ba0
MJ
198 export PYTHON="python3"
199 export PYTHON_CONFIG="python3-config"
221450b6 200 ;;
07dafe32 201
897eb548
MJ
202cygwin)
203 export MAKE=make
204 export TAR=tar
205 export NPROC=nproc
206 export PYTHON="python3"
207 export PYTHON_CONFIG="python3-config"
208 rebase_dll=1
209 ;;
210
87e41bca 211*)
a0b535b2
MJ
212 export MAKE=make
213 export TAR=tar
214 export NPROC=nproc
1f620ba0
MJ
215 export PYTHON="python3"
216 export PYTHON_CONFIG="python3-config"
87e41bca
MJ
217 ;;
218esac
219
51c9c62d
MJ
220# Print build env details
221print_os || true
222print_tooling || true
223
a0b535b2
MJ
224# Enter the source directory
225cd "$SRCDIR"
226
227# Run bootstrap in the source directory prior to configure
228./bootstrap
229
230# Get source version from configure script
231eval "$(grep '^PACKAGE_VERSION=' ./configure)"
07dafe32 232PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
a0b535b2 233
11ba7264 234# Enable dev mode by default for BT 2.0 builds
9201e00d
MJ
235export BABELTRACE_DEBUG_MODE=1
236export BABELTRACE_DEV_MODE=1
8130d845 237export BABELTRACE_MINIMAL_LOG_LEVEL=TRACE
11ba7264 238
07dafe32
MJ
239# Set configure options and environment variables for each build
240# configuration.
241CONF_OPTS=("--prefix=$PREFIX")
275b59d2
JRJ
242case "$conf" in
243static)
1f620ba0
MJ
244 echo "Static lib only configuration"
245
246 CONF_OPTS+=("--enable-static" "--disable-shared")
247
a0b535b2 248 if vergte "$PACKAGE_VERSION" "2.0"; then
1f620ba0 249 CONF_OPTS+=("--enable-built-in-plugins")
a0b535b2 250 fi
275b59d2 251 ;;
1f620ba0 252
221450b6 253python-bindings)
1f620ba0
MJ
254 echo "Python bindings configuration"
255
256 CONF_OPTS+=("--enable-python-bindings")
a0b535b2
MJ
257
258 if vergte "$PACKAGE_VERSION" "2.0"; then
1f620ba0 259 CONF_OPTS+=("--enable-python-bindings-doc" "--enable-python-plugins")
a0b535b2 260 fi
275b59d2 261 ;;
1f620ba0 262
0d30552d 263prod)
1f620ba0 264 echo "Production configuration"
9201e00d
MJ
265
266 # Unset the developper variables
267 unset BABELTRACE_DEBUG_MODE
268 unset BABELTRACE_DEV_MODE
269 unset BABELTRACE_MINIMAL_LOG_LEVEL
270
271 # Enable the python bindings
1f620ba0 272 CONF_OPTS+=("--enable-python-bindings" "--enable-python-bindings-doc" "--enable-python-plugins")
9201e00d 273 ;;
1f620ba0 274
0d30552d 275min)
1f620ba0 276 echo "Minimal configuration"
0d30552d 277 ;;
1f620ba0 278
275b59d2 279*)
1f620ba0 280 echo "Standard configuration"
0d30552d 281
1f620ba0 282 # Enable the python bindings / plugins by default with babeltrace2,
0d30552d
MJ
283 # the test suite is mostly useless without it.
284 if vergte "$PACKAGE_VERSION" "2.0"; then
1f620ba0 285 CONF_OPTS+=("--enable-python-bindings" "--enable-python-plugins")
0d30552d 286 fi
275b59d2
JRJ
287 ;;
288esac
289
aad6ac90 290# Build type
07dafe32
MJ
291# oot : out-of-tree build
292# dist : build via make dist
293# oot-dist: build via make dist out-of-tree
294# * : normal tree build
aad6ac90 295#
07dafe32 296# Make sure to move to the build directory and run configure
1f620ba0 297# before continuing.
aad6ac90 298case "$build" in
b8475d72
MJ
299oot)
300 echo "Out of tree build"
301
302 # Create and enter a temporary build directory
303 builddir=$(mktemp -d)
304 cd "$builddir"
305
51c9c62d 306 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
b8475d72 307 ;;
1f620ba0 308
b8475d72
MJ
309dist)
310 echo "Distribution in-tree build"
1f620ba0 311
b8475d72
MJ
312 # Run configure and generate the tar file
313 # in the source directory
51c9c62d 314 ./configure || failed_configure
b8475d72 315 $MAKE dist
c56b9301 316
b8475d72
MJ
317 # Create and enter a temporary build directory
318 builddir=$(mktemp -d)
319 cd "$builddir"
320
321 # Extract the distribution tar in the build directory,
322 # ignore the first directory level
323 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
324
07dafe32 325 # Build in extracted source tree
51c9c62d 326 ./configure "${CONF_OPTS[@]}" || failed_configure
b8475d72 327 ;;
c56b9301 328
b8475d72
MJ
329oot-dist)
330 echo "Distribution out of tree build"
c56b9301 331
b8475d72
MJ
332 # Create and enter a temporary build directory
333 builddir=$(mktemp -d)
334 cd "$builddir"
c56b9301 335
b8475d72 336 # Run configure out of tree and generate the tar file
51c9c62d 337 "$SRCDIR/configure" || failed_configure
b8475d72 338 $MAKE dist
c56b9301 339
b8475d72
MJ
340 dist_srcdir="$(mktemp -d)"
341 cd "$dist_srcdir"
c56b9301 342
b8475d72
MJ
343 # Extract the distribution tar in the new source directory,
344 # ignore the first directory level
345 $TAR xvf "$builddir"/*.tar.* --strip 1
346
347 # Create and enter a second temporary build directory
348 builddir="$(mktemp -d)"
349 cd "$builddir"
350
351 # Run configure from the extracted distribution tar,
352 # out of the source tree
51c9c62d 353 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
b8475d72
MJ
354 ;;
355
356*)
357 echo "Standard in-tree build"
51c9c62d 358 ./configure "${CONF_OPTS[@]}" || failed_configure
b8475d72 359 ;;
aad6ac90
JR
360esac
361
1f620ba0
MJ
362# We are now inside a configured build directory
363
c56b9301 364# BUILD!
a57a60d9 365$MAKE -j "$($NPROC)" V=1
07dafe32 366
897eb548
MJ
367# Force rebase DLL address mapping
368if [ "${rebase_dll:-}" == "1" ]; then
f2cd0939 369 find . -name "*.dll" -print0 | xargs -0 rebase -O -v
897eb548
MJ
370fi
371
07dafe32
MJ
372# Install in the workspace
373$MAKE install DESTDIR="$WORKSPACE"
c56b9301 374
9d56171a 375# Run tests, don't fail now, we want to run the archiving steps
1d56e325
MJ
376failed_tests=0
377$MAKE --keep-going check || failed_tests=1
c56b9301 378
1f620ba0 379# Copy tap logs for the jenkins tap parser before cleaning the build dir
e6be9fb0
MJ
380rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
381
649c39a6
MJ
382# The test suite prior to 1.5 did not produce TAP logs
383if verlt "$PACKAGE_VERSION" "1.5"; then
384 mkdir -p "$WORKSPACE/tap/no-log"
385 echo "1..1" > "$WORKSPACE/tap/no-log/tests.log"
386 echo "ok 1 - Test suite doesn't support logging" >> "$WORKSPACE/tap/no-log/tests.log"
387fi
388
e6be9fb0
MJ
389# Clean the build directory
390$MAKE clean
275b59d2 391
c56b9301 392# Cleanup rpath in executables and shared libraries
07dafe32
MJ
393find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
394find "$WORKSPACE/$PREFIX/lib" -name "*.so" -exec chrpath --delete {} \;
c56b9301
MJ
395
396# Remove libtool .la files
07dafe32 397find "$WORKSPACE/$PREFIX/lib" -name "*.la" -exec rm -f {} \;
87e41bca 398
1d56e325
MJ
399# Exit with failure if any of the tests failed
400exit $failed_tests
9d56171a 401
87e41bca 402# EOF
This page took 0.066993 seconds and 4 git commands to generate.