Make scripts executable
[lttng-ci.git] / scripts / lttng-ust / 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
19 # Create build directory
20 rm -rf $WORKSPACE/build
21 mkdir -p $WORKSPACE/build
22
23 # liburcu
24 URCU_INCS="$WORKSPACE/deps/liburcu/build/include/"
25 URCU_LIBS="$WORKSPACE/deps/liburcu/build/lib/"
26
27 export CPPFLAGS="-I$URCU_INCS"
28 export LDFLAGS="-L$URCU_LIBS"
29 export LD_LIBRARY_PATH="$URCU_LIBS:${LD_LIBRARY_PATH:-}"
30
31 PREFIX="$WORKSPACE/build"
32
33 ./bootstrap
34
35 CONF_OPTS=""
36
37 case "$conf" in
38 # Unsupported! liblttng-ust can't pull in it's static (.a) dependencies.
39 #static)
40 # echo "Static build"
41 # CONF_OPTS="--enable-static --disable-shared"
42 # ;;
43 java-agent)
44 echo "Java agent build"
45 export CLASSPATH="/usr/share/java/log4j-1.2.jar"
46 CONF_OPTS="--enable-java-agent-all"
47 ;;
48 python-agent)
49 echo "Python agent build"
50 CONF_OPTS="--enable-python-agent"
51 ;;
52 *)
53 echo "Standard build"
54 CONF_OPTS=""
55 ;;
56 esac
57
58 # Build type
59 # oot : out-of-tree build
60 # dist: build via make dist
61 # * : normal tree build
62 #
63 # Make sure to move to the build_path and configure
64 # before continuing
65
66 BUILD_PATH=$WORKSPACE
67 case "$build" in
68 oot)
69 echo "Out of tree build"
70 BUILD_PATH=$WORKSPACE/oot
71 mkdir -p $BUILD_PATH
72 cd $BUILD_PATH
73 $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
74 ;;
75 dist)
76 echo "Distribution out of tree build"
77 BUILD_PATH=`mktemp -d`
78
79 # Initial configure and generate tarball
80 ./configure
81 make dist
82
83 mkdir -p $BUILD_PATH
84 cp *.tar.* $BUILD_PATH/
85 cd $BUILD_PATH
86
87 # Ignore level 1 of tar
88 tar xvf *.tar.* --strip 1
89
90 $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
91 ;;
92 *)
93 BUILD_PATH=$WORKSPACE
94 echo "Standard tree build"
95 $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
96 ;;
97 esac
98
99 make V=1
100 make install
101
102 # Run tests
103 rm -rf $WORKSPACE/tap
104 mkdir -p $WORKSPACE/tap/unit
105
106 cd $BUILD_PATH/tests
107
108 prove --merge --exec '' - < $BUILD_PATH/tests/unit_tests --archive $WORKSPACE/tap/unit/ || true
109
110 # TAP plugin is having a hard time with .yml files.
111 rm -f $WORKSPACE/tap/unit/meta.yml
112
113 # And also with files without extension, so rename all result to *.tap
114 find $WORKSPACE/tap/unit/ -type f -exec mv {} {}.tap \;
115
116 # Cleanup
117 make clean
118
119 # Cleanup rpath and libtool .la files
120 find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \;
121 find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \;
122
123 # Clean temp dir for dist build
124 if [ $build = "dist" ]; then
125 rm -rf $BUILD_PATH
126 fi
This page took 0.057176 seconds and 4 git commands to generate.