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