jjb: lttng-ust-benchmarks: move amd64 jobs to deb12
[lttng-ci.git] / scripts / lttng-ust-benchmarks / build.sh
1 #!/bin/bash
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 set -exu
20
21 SRCDIR="$WORKSPACE/src/$PROJECT_NAME"
22
23 # Create build directory
24 rm -rf "$WORKSPACE/build"
25 mkdir -p "$WORKSPACE/build"
26
27 PYTHON3=python3
28 P3_VERSION=$($PYTHON3 -c 'import sys;v = sys.version.split()[0].split("."); print("{}.{}".format(v[0], v[1]))')
29
30 # liburcu
31 URCU_INCS="$WORKSPACE/deps/liburcu/build/include/"
32 URCU_LIBS="$WORKSPACE/deps/liburcu/build/lib/"
33
34 # lttng-ust
35 UST_INCS="$WORKSPACE/deps/lttng-ust/build/include/"
36 UST_LIBS="$WORKSPACE/deps/lttng-ust/build/lib/"
37 UST_BINS="$WORKSPACE/deps/lttng-ust/build/bin/"
38
39 # babeltrace
40 BABEL_INCS="$WORKSPACE/deps/babeltrace/build/include/"
41 BABEL_LIBS="$WORKSPACE/deps/babeltrace/build/lib/"
42 BABEL_PY="$WORKSPACE/deps/babeltrace/build/lib/python$P3_VERSION/site-packages/"
43
44 # lttng-tools
45 TOOLS_INCS="$WORKSPACE/deps/lttng-tools/build/include/"
46 TOOLS_LIBS="$WORKSPACE/deps/lttng-tools/build/lib/"
47 TOOLS_BINS="$WORKSPACE/deps/lttng-tools/build/bin/"
48 TOOLS_PY="$WORKSPACE/deps/lttng-tools/build/lib/python$P3_VERSION/site-packages/"
49
50 rm -rf "$WORKSPACE/deps/lttng-modules"
51 git clone https://github.com/lttng/lttng-modules.git "$WORKSPACE/deps/lttng-modules"
52
53 export CFLAGS="-I$URCU_INCS -I$UST_INCS"
54 export LDFLAGS="-L$URCU_LIBS -L$UST_LIBS"
55 export LD_LIBRARY_PATH="$URCU_LIBS:$UST_LIBS:$BABEL_LIBS:$TOOLS_LIBS:${LD_LIBRARY_PATH:-}"
56 export PYTHONPATH="$TOOLS_PY:$BABEL_PY:${PYTHONPATH:-}"
57 export PATH="$TOOLS_BINS:$UST_BINS:$PATH"
58 export LTTNG_MODULES_DIR="$WORKSPACE/deps/lttng-modules/"
59 export PKG_CONFIG_PATH="$UST_LIBS/pkgconfig"
60
61 export LTTNG_SESSION_CONFIG_XSD_PATH="$WORKSPACE/deps/lttng-tools/build/share/xml/lttng"
62 export LTTNG_CONSUMERD64_BIN="$WORKSPACE/deps/lttng-tools/build/lib/lttng/libexec/lttng-consumerd"
63
64 cd "$SRCDIR"
65
66 make PYTHON="$PYTHON3"
67
68 "$PYTHON3" ./benchmarks.py
69
70 # EOF
This page took 0.032363 seconds and 4 git commands to generate.