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