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