jjb: lttng-tools: Add release jobs
[lttng-ci.git] / scripts / lttng-tools / release.sh
CommitLineData
c95cf818
MJ
1#!/bin/bash -exu
2#
3# Copyright (C) 2015 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4# Copyright (C) 2020 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# Version compare functions
20vercomp () {
21 set +u
22 if [[ "$1" == "$2" ]]; then
23 return 0
24 fi
25 local IFS=.
26 local i ver1=($1) ver2=($2)
27 # fill empty fields in ver1 with zeros
28 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
29 ver1[i]=0
30 done
31 for ((i=0; i<${#ver1[@]}; i++)); do
32 if [[ -z ${ver2[i]} ]]; then
33 # fill empty fields in ver2 with zeros
34 ver2[i]=0
35 fi
36 if ((10#${ver1[i]} > 10#${ver2[i]})); then
37 return 1
38 fi
39 if ((10#${ver1[i]} < 10#${ver2[i]})); then
40 return 2
41 fi
42 done
43 set -u
44 return 0
45}
46
47verlte() {
48 vercomp "$1" "$2"; local res="$?"
49 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
50}
51
52verlt() {
53 vercomp "$1" "$2"; local res="$?"
54 [ "$res" -eq "2" ]
55}
56
57vergte() {
58 vercomp "$1" "$2"; local res="$?"
59 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
60}
61
62vergt() {
63 vercomp "$1" "$2"; local res="$?"
64 [ "$res" -eq "1" ]
65}
66
67verne() {
68 vercomp "$1" "$2"; local res="$?"
69 [ "$res" -ne "0" ]
70}
71
72export TERM="xterm-256color"
73
74DEPS_INC="$WORKSPACE/deps/build/include"
75DEPS_LIB="$WORKSPACE/deps/build/lib"
76DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
77DEPS_BIN="$WORKSPACE/deps/build/bin"
78DEPS_JAVA="$WORKSPACE/deps/build/share/java"
79
80export PATH="$DEPS_BIN:$PATH"
81export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
82export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
83export CPPFLAGS="-I$DEPS_INC"
84export LDFLAGS="-L$DEPS_LIB"
85
86export JAVA_HOME="/usr/lib/jvm/default-java"
87export CLASSPATH="$DEPS_JAVA/*:/usr/share/java/*"
88
89SRCDIR="$WORKSPACE/src/lttng-tools"
90TAPDIR="$WORKSPACE/tap"
91PREFIX="$WORKSPACE/out"
92
93# Create tmp directory
94TMPDIR="$WORKSPACE/tmp"
95mkdir -p "$TMPDIR"
96
97# Use a symlink in /tmp to point to the the tmp directory
98# inside the workspace, this is to work around the path length
99# limit of unix sockets which are created by the test suite.
100tmpdir="$(mktemp)"
101ln -sf "$TMPDIR" "$tmpdir"
102export TMPDIR="$tmpdir"
103
104# Create a symlink to "babeltrace" when the "babeltrace2" executable is found.
105# This is a temporary workaround until lttng-tools either allows the override of
106# the trace reader in its test suite or that we move to only supporting
107# babeltrace2
108if [ -x "$DEPS_BIN/babeltrace2" ]; then
109 ln -s "$DEPS_BIN/babeltrace2" "$DEPS_BIN/babeltrace"
110fi
111
112# When using babeltrace2 make sure that it finds its plugins and
113# plugin-providers.
114export BABELTRACE_PLUGIN_PATH="$DEPS_LIB/babeltrace2/plugins/"
115export LIBBABELTRACE2_PLUGIN_PROVIDER_DIR="$DEPS_LIB/babeltrace2/plugin-providers/"
116
117PYTHON2=python2
118PYTHON3=python3
119
120# Set default python to python3 for the bindings
121export PYTHON="$PYTHON3"
122export PYTHON_CONFIG="/usr/bin/$PYTHON3-config"
123
124P2_VERSION=$($PYTHON2 -c "import sys;print(sys.version[:3])")
125P3_VERSION=$($PYTHON3 -c "import sys;print(sys.version[:3])")
126
127UST_PYTHON2="$WORKSPACE/deps/build/lib/python$P2_VERSION/site-packages"
128UST_PYTHON3="$WORKSPACE/deps/build/lib/python$P3_VERSION/site-packages"
129
130export PYTHONPATH="$UST_PYTHON2:$UST_PYTHON3"
131
132
133
134# Create build and tmp directories
135rm -rf "$PREFIX"
136mkdir -p "$PREFIX"
137
138
139
140
141# Enter the source directory
142cd "$SRCDIR"
143
144# Run bootstrap in the source directory prior to configure
145./bootstrap
146
147# Get source version from configure script
148eval "$(grep '^PACKAGE_VERSION=' ./configure)"
149
150TARBALL_FILE="lttng-tools-$PACKAGE_VERSION.tar.bz2"
151
152# Make sure the reported version matches the current git tag
153GIT_TAG="$(git describe --exact-match --tags $(git log -n1 --pretty='%h')|| echo 'undefined')"
154
155if [ "v$PACKAGE_VERSION" != "$GIT_TAG" ]; then
156 echo "Git checkout is not tagged or doesn't match the reported version."
157 exit 1
158fi
159
160# Generate release tarball
161./configure
162make dist
163cp "./$TARBALL_FILE" "$PREFIX/"
164
165
166# Allow core dumps
167ulimit -c unlimited
168
169# Force the lttng-sessiond path to /bin/true to prevent the spawing of a
170# lttng-sessiond --daemonize on "lttng create"
171export LTTNG_SESSIOND_PATH="/bin/true"
172
173
174# Do an in-tree test build
175mkdir "$WORKSPACE/intree"
176cd "$WORKSPACE/intree" || exit 1
177tar xvf "$PREFIX/$TARBALL_FILE" --strip 1
178./configure --prefix="$(mktemp -d)" --enable-python-bindings --enable-test-java-agent-all --enable-test-python-agent-all
179make -j "$(nproc)" V=1
180make check
181make install
182make clean
183
184# do an out-of-tree test build
185mkdir "$WORKSPACE/oot"
186mkdir "$WORKSPACE/oot/src"
187mkdir "$WORKSPACE/oot/build"
188cd "$WORKSPACE/oot/src" || exit 1
189tar xvf "$PREFIX/$TARBALL_FILE" --strip 1
190cd "$WORKSPACE/oot/build" || exit 1
191"$WORKSPACE/oot/src/configure" --prefix="$(mktemp -d)" --enable-python-bindings --enable-test-java-agent-all --enable-test-python-agent-all
192make -j "$(nproc)" V=1
193make check
194make install
195make clean
196
197# EOF
This page took 0.029853 seconds and 4 git commands to generate.