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