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