Set all shell script to exit on unsuccessful exit code
[lttng-ci.git] / scripts / babeltrace / build.sh
1 #!/bin/sh -exu
2 #
3 # Copyright (C) 2015 - Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 # Create build directory
19 rm -rf $WORKSPACE/build
20 mkdir -p $WORKSPACE/build
21
22 PREFIX="$WORKSPACE/build"
23
24 ./bootstrap
25
26 CONF_OPTS=""
27
28 case "$conf" in
29 static)
30 echo "Static build"
31 CONF_OPTS="--enable-static --disable-shared"
32 ;;
33 python_bindings)
34 echo "Build with python bindings"
35 # We only support bindings built with Python 3
36 export PYTHON="python3"
37 export PYTHON_CONFIG="/usr/bin/python3-config"
38 CONF_OPTS="--enable-python-bindings"
39 ;;
40 *)
41 echo "Standard build"
42 CONF_OPTS=""
43 ;;
44 esac
45
46 # Build type
47 # oot : out-of-tree build
48 # dist: build via make dist
49 # * : normal tree build
50 #
51 # Make sure to move to the build_path and configure
52 # before continuing
53
54 BUILD_PATH=$WORKSPACE
55 TEST_PLAN_PATH=$WORKSPACE
56
57 case "$build" in
58 oot)
59 echo "Out of tree build"
60 BUILD_PATH=$WORKSPACE/oot
61 mkdir -p $BUILD_PATH
62 cd $BUILD_PATH
63 $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
64 ;;
65 dist)
66 echo "Distribution out of tree build"
67 BUILD_PATH=`mktemp -d`
68
69 # Initial configure and generate tarball
70 ./configure
71 make dist
72
73 mkdir -p $BUILD_PATH
74 cp *.tar.* $BUILD_PATH/
75 cd $BUILD_PATH
76
77 # Ignore level 1 of tar
78 tar xvf *.tar.* --strip 1
79
80 $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
81
82 # Set test plan to dist tar
83 TEST_PLAN_PATH=$BUILD_PATH
84 ;;
85 *)
86 echo "Standard tree build"
87 $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
88 ;;
89 esac
90
91 make
92 make install
93
94 rm -rf $WORKSPACE/tap
95 mkdir -p $WORKSPACE/tap
96
97 cd $BUILD_PATH/tests
98
99 # Run make check tests
100 if [ -e $TEST_PLAN_PATH/tests/tests ]; then
101 prove --merge --exec '' - < $TEST_PLAN_PATH/tests/tests --archive $WORKSPACE/tap/ || true
102 else
103 echo "Missing test plan"
104 exit 1
105 fi
106
107 # TAP plugin is having a hard time with .yml files.
108 rm -f $WORKSPACE/tap/meta.yml
109
110 # And also with files without extension, so rename all result to *.tap
111 find $WORKSPACE/tap/ -type f -exec mv {} {}.tap \;
112
113 make clean
114
115 # Cleanup rpath and libtool .la files
116 find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \;
117 find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \;
118 find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \;
119
120 if [ $build = "dist" ]; then
121 rm -rf $BUILD_PATH
122 fi
This page took 0.05394 seconds and 5 git commands to generate.