jjb: Add env and os details printing to build jobs
[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=.
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
80 # End the build with failure
81 exit 1
82}
83
e04f80ef
MJ
84# Required variables
85WORKSPACE=${WORKSPACE:-}
86
a57a60d9
MJ
87arch=${arch:-}
88conf=${conf:-}
89build=${build:-}
3579dc14
MJ
90cc=${cc:-}
91
a57a60d9 92
3579dc14
MJ
93DEPS_INC="$WORKSPACE/deps/build/include"
94DEPS_LIB="$WORKSPACE/deps/build/lib"
5bd69da1 95DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
1d56e325
MJ
96#DEPS_BIN="$WORKSPACE/deps/build/bin"
97#DEPS_JAVA="$WORKSPACE/deps/build/share/java"
2b68721a 98
3579dc14 99export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
5bd69da1 100export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
3579dc14
MJ
101export CPPFLAGS="-I$DEPS_INC"
102export LDFLAGS="-L$DEPS_LIB"
c3bc676b 103
1f4fba8c
MJ
104SRCDIR="$WORKSPACE/src/lttng-ust"
105TMPDIR="$WORKSPACE/tmp"
3579dc14 106PREFIX="/build"
3b3282a6 107
3579dc14
MJ
108# Create tmp directory
109rm -rf "$TMPDIR"
110mkdir -p "$TMPDIR"
1f4fba8c
MJ
111
112export TMPDIR
72d087d4 113export CFLAGS="-g -O2"
1f4fba8c 114
3579dc14
MJ
115# Set compiler variables
116case "$cc" in
117gcc)
118 export CC=gcc
119 export CXX=g++
120 ;;
121gcc-4.8)
122 export CC=gcc-4.8
123 export CXX=g++-4.8
124 ;;
125gcc-5)
126 export CC=gcc-5
127 export CXX=g++-5
128 ;;
129gcc-6)
130 export CC=gcc-6
131 export CXX=g++-6
132 ;;
133gcc-7)
134 export CC=gcc-7
135 export CXX=g++-7
136 ;;
137gcc-8)
138 export CC=gcc-8
139 export CXX=g++-8
140 ;;
141clang)
142 export CC=clang
143 export CXX=clang++
144 ;;
145clang-3.9)
146 export CC=clang-3.9
147 export CXX=clang++-3.9
148 ;;
149clang-4.0)
150 export CC=clang-4.0
151 export CXX=clang++-4.0
152 ;;
153clang-5.0)
154 export CC=clang-5.0
155 export CXX=clang++-5.0
156 ;;
157clang-6.0)
158 export CC=clang-6.0
159 export CXX=clang++-6.0
160 ;;
161clang-7)
162 export CC=clang-7
163 export CXX=clang++-7
164 ;;
165*)
166 if [ "x$cc" != "x" ]; then
167 export CC="$cc"
168 fi
169 ;;
170esac
171
172if [ "x${CC:-}" != "x" ]; then
173 echo "Selected compiler:"
174 "$CC" -v
175fi
176
3b3282a6
MJ
177# Set platform variables
178case "$arch" in
179*)
3579dc14
MJ
180 export MAKE=make
181 export TAR=tar
182 export NPROC=nproc
183 export PYTHON="python3"
184 export PYTHON_CONFIG="python3-config"
185 ;;
3b3282a6
MJ
186esac
187
51c9c62d
MJ
188# Print build env details
189print_os || true
190print_tooling || true
191
3579dc14
MJ
192# Enter the source directory
193cd "$SRCDIR"
c3bc676b 194
3579dc14
MJ
195# Run bootstrap in the source directory prior to configure
196./bootstrap
ab89ec98 197
3579dc14
MJ
198# Get source version from configure script
199eval "$(grep '^PACKAGE_VERSION=' ./configure)"
1d56e325 200PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/}
c3bc676b 201
3579dc14
MJ
202# Set configure options and environment variables for each build
203# configuration.
204CONF_OPTS=("--prefix=$PREFIX")
c3bc676b 205case "$conf" in
3b3282a6 206static)
3579dc14
MJ
207 echo "Static lib only configuration"
208
209 CONF_OPTS+=("--enable-static" "--disable-shared")
1d56e325
MJ
210
211 # Unsupported! liblttng-ust can't pull in it's static (.a) dependencies.
212 exit 1
3b3282a6
MJ
213 ;;
214
67122b96 215agents)
3579dc14 216 echo "Java and Python agents configuration"
3b3282a6 217
60bb9bde 218 export CLASSPATH='/usr/share/java/*'
3579dc14 219 CONF_OPTS+=("--enable-java-agent-all" "--enable-jni-interface" "--enable-python-agent")
3b3282a6
MJ
220 ;;
221
a76416f2
JR
222debug-rcu)
223 echo "Enable RCU sanity checks for debugging"
3579dc14 224 export CPPFLAGS="${CPPFLAGS} -DDEBUG_RCU"
a76416f2
JR
225 ;;
226
c3bc676b 227*)
3579dc14 228 echo "Standard configuration"
c3bc676b
JRJ
229 ;;
230esac
231
2b68721a 232# Build type
67122b96
MJ
233# oot : out-of-tree build
234# dist : build via make dist
235# oot-dist: build via make dist out-of-tree
236# * : normal tree build
2b68721a 237#
3579dc14
MJ
238# Make sure to move to the build directory and run configure
239# before continuing.
2b68721a 240case "$build" in
3b3282a6
MJ
241oot)
242 echo "Out of tree build"
67122b96 243
3579dc14
MJ
244 # Create and enter a temporary build directory
245 builddir=$(mktemp -d)
246 cd "$builddir"
67122b96 247
51c9c62d 248 "$SRCDIR/configure" "${CONF_OPTS[@]}" || failed_configure
3b3282a6
MJ
249 ;;
250
251dist)
3579dc14 252 echo "Distribution in-tree build"
3b3282a6 253
3579dc14
MJ
254 # Run configure and generate the tar file
255 # in the source directory
51c9c62d 256 ./configure || failed_configure
3b3282a6
MJ
257 $MAKE dist
258
3579dc14
MJ
259 # Create and enter a temporary build directory
260 builddir=$(mktemp -d)
261 cd "$builddir"
3b3282a6 262
3579dc14
MJ
263 # Extract the distribution tar in the build directory,
264 # ignore the first directory level
265 $TAR xvf "$SRCDIR"/*.tar.* --strip 1
3b3282a6 266
67122b96 267 # Build in extracted source tree
51c9c62d 268 ./configure "${CONF_OPTS[@]}" || failed_configure
3b3282a6
MJ
269 ;;
270
67122b96 271oot-dist)
3579dc14 272 echo "Distribution out of tree build"
67122b96 273
3579dc14
MJ
274 # Create and enter a temporary build directory
275 builddir=$(mktemp -d)
276 cd "$builddir"
277
278 # Run configure out of tree and generate the tar file
51c9c62d 279 "$SRCDIR/configure" || failed_configure
67122b96
MJ
280 $MAKE dist
281
3579dc14
MJ
282 dist_srcdir="$(mktemp -d)"
283 cd "$dist_srcdir"
67122b96 284
3579dc14
MJ
285 # Extract the distribution tar in the new source directory,
286 # ignore the first directory level
287 $TAR xvf "$builddir"/*.tar.* --strip 1
67122b96 288
3579dc14
MJ
289 # Create and enter a second temporary build directory
290 builddir="$(mktemp -d)"
291 cd "$builddir"
67122b96 292
3579dc14
MJ
293 # Run configure from the extracted distribution tar,
294 # out of the source tree
51c9c62d 295 "$dist_srcdir/configure" "${CONF_OPTS[@]}" || failed_configure
67122b96
MJ
296 ;;
297
3b3282a6 298*)
1f4fba8c 299 echo "Standard in-tree build"
51c9c62d 300 ./configure "${CONF_OPTS[@]}" || failed_configure
3b3282a6 301 ;;
2b68721a
MJ
302esac
303
3579dc14
MJ
304# We are now inside a configured build directory
305
3b3282a6 306# BUILD!
a57a60d9 307$MAKE -j "$($NPROC)" V=1
c3bc676b 308
3579dc14
MJ
309# Install in the workspace
310$MAKE install DESTDIR="$WORKSPACE"
311
312# Run tests, don't fail now, we want to run the archiving steps
1d56e325
MJ
313failed_tests=0
314$MAKE --keep-going check || failed_tests=1
c3bc676b 315
3579dc14 316# Copy tap logs for the jenkins tap parser before cleaning the build dir
1f4fba8c 317rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
c3bc676b 318
0fe4a4b4
MJ
319# The test suite prior to 2.8 did not produce TAP logs
320if verlt "$PACKAGE_VERSION" "2.8"; then
321 mkdir -p "$WORKSPACE/tap/no-log"
322 echo "1..1" > "$WORKSPACE/tap/no-log/tests.log"
323 echo "ok 1 - Test suite doesn't support logging" >> "$WORKSPACE/tap/no-log/tests.log"
324fi
325
1f4fba8c 326# Clean the build directory
3b3282a6 327$MAKE clean
c3bc676b 328
3b3282a6 329# Cleanup rpath in executables and shared libraries
1d56e325 330#find "$WORKSPACE/$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
3579dc14 331find "$WORKSPACE/$PREFIX/lib" -name "*.so" -exec chrpath --delete {} \;
3b3282a6
MJ
332
333# Remove libtool .la files
3579dc14 334find "$WORKSPACE/$PREFIX/lib" -name "*.la" -exec rm -f {} \;
2b68721a 335
1d56e325
MJ
336# Exit with failure if any of the tests failed
337exit $failed_tests
3b3282a6
MJ
338
339# EOF
This page took 0.044467 seconds and 4 git commands to generate.