summaryrefslogtreecommitdiff
path: root/tools/ci-build.sh
blob: 3781fa7190ccef501a6fdfa90031c63eac5894db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/bin/bash

# Copyright © 2016 Simon McVittie
#
# SPDX-License-Identifier: MIT
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use, copy,
# modify, merge, publish, distribute, sublicense, and/or sell copies
# of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

set -e
set -x

NULL=
srcdir="$(pwd)"
prefix="$(mktemp -d -t "prefix.XXXXXX")"

if [ -z "$dbus_ci_parallel" ]; then
	dbus_ci_parallel=2
fi

if [ -n "$dbus_ci_system_python" ]; then
	# Reset to standard paths to use the Ubuntu version of python
	unset LDFLAGS
	unset PYTHONPATH
	unset PYTHON_CFLAGS
	unset PYTHON_CONFIGURE_OPTS
	unset VIRTUAL_ENV
	export PATH=/usr/bin:/bin
	export PYTHON="$(command -v "$dbus_ci_system_python")"
fi

export PATH="$HOME/.local/bin:$PATH"

NOCONFIGURE=1 ./autogen.sh

e=0
(
	mkdir _autotools && cd _autotools && "${srcdir}/configure" \
		--enable-installed-tests \
		--prefix="$prefix" \
		--with-python-prefix='${prefix}' \
		--with-python-exec-prefix='${exec_prefix}' \
		"$@" \
		${NULL}
) || e=1
if [ "x$e" != x0 ]; then
	cat "_autotools/config.log"
fi
test "x$e" = x0

make="make -j${dbus_ci_parallel} V=1 VERBOSE=1"

$make -C _autotools
$make -C _autotools check
$make -C _autotools distcheck
$make -C _autotools install
( cd "$prefix" && find . -ls )

(
	dbus_ci_pyversion="$(${PYTHON:-python3} -c 'import sysconfig; print(sysconfig.get_config_var("VERSION"))')"
	export PYTHONPATH="$prefix/lib/python$dbus_ci_pyversion/site-packages:$PYTHONPATH"
	export XDG_DATA_DIRS="$prefix/share:/usr/local/share:/usr/share"
	gnome-desktop-testing-runner dbus-python
)

# Do a Meson build from the Autotools dist tarball, to check that can work
mkdir _meson-source
tar -C _meson-source --strip-components=1 -xf _autotools/dbus-python-*.tar.gz
meson setup \
	--prefix="$prefix" \
	-Ddoc=true \
	-Dinstalled_tests=true \
	-Dpython="${PYTHON:-python3}" \
	_meson-source _meson-build
meson compile -C _meson-build
meson test -C _meson-build
rm -fr "$prefix"
meson install -C _meson-build
( cd "$prefix" && find . -ls )

case "${PYTHON:-python3}" in
	(*3.[0-8]-dbg)
		# -dbg builds with Meson don't set the right ABI suffix in older Pythons
		test_meson=
		;;
	(*)
		test_meson=yes
		;;
esac

if [ -n "$test_meson" ]; then (
	dbus_ci_pyversion="$(${PYTHON:-python3} -c 'import sysconfig; print(sysconfig.get_config_var("VERSION"))')"
	export PYTHONPATH="$prefix/lib/python$dbus_ci_pyversion/site-packages:$prefix/lib/python3/dist-packages:$PYTHONPATH"
	export XDG_DATA_DIRS="$prefix/share:/usr/local/share:/usr/share"
	gnome-desktop-testing-runner dbus-python
); fi

# re-run the tests with dbus-python only installed via pip
${PYTHON:-python3} -m virtualenv --python="${PYTHON:-python3}" _venv
if [ -n "$test_meson" ]; then (
	. _venv/bin/activate
	export PYTHON="$(pwd)/_venv/bin/python3"
	"$PYTHON" -m pip install -vvv _autotools/dbus-python-*.tar.gz
	cp -a "$prefix/share" "$prefix/venv-meta"
	sed -E -i -e "/^Exec=/ s# (PYTHON=)?(/usr)?(/bin/)?python3[0-9.]*(-dbg)? # \\1$PYTHON #g" \
		"$prefix"/venv-meta/installed-tests/dbus-python/*.test
	head -n-0 -v "$prefix"/venv-meta/installed-tests/dbus-python/*.test
	find _venv -ls
	# not directly applicable for a venv
	rm -f "$prefix/venv-meta/installed-tests/dbus-python/test-import-repeatedly.test"
	export XDG_DATA_DIRS="$prefix/venv-meta:/usr/local/share:/usr/share"
	gnome-desktop-testing-runner dbus-python
); fi