Merge pull request #20 from alexmonthy/fix-scope
[lttng-ci.git] / scripts / babeltrace / build.sh
... / ...
CommitLineData
1#!/bin/bash -exu
2#
3# Copyright (C) 2015 - Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4# 2016 - 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# Required parameters
20arch=${arch:-}
21conf=${conf:-}
22build=${build:-}
23
24
25SRCDIR="$WORKSPACE/src/babeltrace"
26TMPDIR="$WORKSPACE/tmp"
27PREFIX="$WORKSPACE/build"
28
29# Create build and tmp directories
30rm -rf "$PREFIX" "$TMPDIR"
31mkdir -p "$PREFIX" "$TMPDIR"
32
33export TMPDIR
34
35# Set platform variables
36case "$arch" in
37solaris10)
38 MAKE=gmake
39 TAR=gtar
40 NPROC=gnproc
41 BISON=bison
42 YACC="$BISON -y"
43 export PATH="/opt/csw/bin:/usr/ccs/bin:$PATH"
44 ;;
45solaris11)
46 MAKE=gmake
47 TAR=gtar
48 NPROC=nproc
49 BISON="/opt/csw/bin/bison"
50 YACC="$BISON -y"
51 export PATH="$PATH:/usr/perl5/bin"
52 ;;
53macosx)
54 MAKE=make
55 TAR=tar
56 NPROC="getconf _NPROCESSORS_ONLN"
57 BISON="bison"
58 YACC="$BISON -y"
59 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
60 export CFLAGS="-I/opt/local/include"
61 export LDFLAGS="-L/opt/local/lib"
62 ;;
63*)
64 MAKE=make
65 TAR=tar
66 NPROC=nproc
67 BISON=bison
68 YACC="$BISON -y"
69 ;;
70esac
71
72# Set configure options for each build configuration
73CONF_OPTS=""
74case "$conf" in
75static)
76 echo "Static build"
77 CONF_OPTS="--enable-static --disable-shared"
78 ;;
79python-bindings)
80 echo "Build with python bindings"
81 # We only support bindings built with Python 3
82 export PYTHON="python3"
83 export PYTHON_CONFIG="/usr/bin/python3-config"
84 CONF_OPTS="--enable-python-bindings"
85 ;;
86*)
87 echo "Standard build"
88 CONF_OPTS=""
89 ;;
90esac
91
92# Enter the source directory
93cd "$SRCDIR"
94
95# Run bootstrap in the source directory prior to configure
96./bootstrap
97
98
99# Build type
100# oot : out-of-tree build
101# dist: build via make dist
102# * : normal tree build
103#
104# Make sure to move to the build_path and configure
105# before continuing
106BUILD_PATH="$SRCDIR"
107case "$build" in
108 oot)
109 echo "Out of tree build"
110 BUILD_PATH="$WORKSPACE/oot"
111 mkdir -p "$BUILD_PATH"
112 cd "$BUILD_PATH"
113 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS
114 ;;
115
116 dist)
117 echo "Distribution out of tree build"
118 BUILD_PATH="$(mktemp -d)"
119
120 # Initial configure and generate tarball
121 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure"
122 $MAKE dist
123
124 mkdir -p "$BUILD_PATH"
125 cp ./*.tar.* "$BUILD_PATH/"
126 cd "$BUILD_PATH"
127
128 # Ignore level 1 of tar
129 $TAR xvf ./*.tar.* --strip 1
130
131 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
132 ;;
133
134 clang)
135 echo "LLVM clang build"
136 export CC=clang
137 clang -v
138 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS
139 ;;
140 *)
141 echo "Standard in-tree build"
142 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS
143 ;;
144esac
145
146# BUILD!
147$MAKE -j "$($NPROC)" V=1
148$MAKE install
149
150# Run tests
151$MAKE check
152
153# Copy tap logs for the jenkins tap parser
154rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
155
156# Clean the build directory
157$MAKE clean
158
159# Cleanup rpath in executables and shared libraries
160find "$PREFIX/bin" -type f -perm -0500 -exec chrpath --delete {} \;
161find "$PREFIX/lib" -name "*.so" -exec chrpath --delete {} \;
162
163# Remove libtool .la files
164find "$PREFIX/lib" -name "*.la" -exec rm -f {} \;
165
166# Clean temp dir for dist build
167if [ "$build" = "dist" ]; then
168 cd "$SRCDIR"
169 rm -rf "$BUILD_PATH"
170fi
171
172# EOF
This page took 0.021937 seconds and 4 git commands to generate.