summaryrefslogtreecommitdiff
path: root/tools/ci-build.sh
blob: a643fb904b54b146d05fc252bd43c8ddbd24a7b6 (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#!/bin/sh

# Copyright © 2016 Simon McVittie
#
# 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)"
builddir="$(mktemp -d -t "builddir.XXXXXX")"
prefix="$(mktemp -d -t "prefix.XXXXXX")"

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

if [ -n "$TRAVIS" ] && [ -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")"

	case "$dbus_ci_system_python" in
		(python-dbg|python2.7-dbg)
			# This is a workaround. Python 2 doesn't have the
			# LDVERSION sysconfig variable, which would give
			# AX_PYTHON_DEVEL the information it needs to know
			# that it should link -lpython2.7_d and not
			# -lpython2.7.
			export PYTHON_LIBS="-lpython${TRAVIS_PYTHON_VERSION}_d"
			;;
	esac

elif [ -n "$TRAVIS_PYTHON_VERSION" ]; then
	# Possibly in a virtualenv
	dbus_ci_bindir="$(python -c 'import sys; print(sys.prefix)')"/bin
	# The real underlying paths, even if we have a virtualenv
	# e.g. /opt/pythonwhatever/bin on travis-ci
	dbus_ci_real_bindir="$(python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_var("BINDIR"))')"
	dbus_ci_real_libdir="$(python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_var("LIBDIR"))')"

	# We want the virtualenv bindir for python itself, then the real bindir
	# for python[X.Y]-config (which isn't copied into the virtualenv, so we
	# risk picking up the wrong one from travis-ci's PATH if we don't
	# do this)
	export PATH="${dbus_ci_bindir}:${dbus_ci_real_bindir}:${PATH}"
	# travis-ci's /opt/pythonwhatever/lib isn't on the library search path
	export LD_LIBRARY_PATH="${dbus_ci_real_libdir}"
	# travis-ci's Python 2 library is static, so it raises warnings
	# about tmpnam_r and tempnam
	case "$TRAVIS_PYTHON_VERSION" in
		(2*) export LDFLAGS=-Wl,--no-fatal-warnings;;
	esac
fi

# dbus-run-session is significantly nicer to debug than with-session-bus.sh,
# but isn't in the version of dbus in Ubuntu 14.10. Take the version from
# dbus-1.10.0 and alter it to be standalone.
if ! command -v dbus-run-session >/dev/null; then
	drsdir="$(mktemp -d -t "d-r-s.XXXXXX")"
	curl -o "$drsdir/dbus-run-session.c" \
		"https://cgit.freedesktop.org/dbus/dbus/plain/tools/dbus-run-session.c?h=dbus-1.10.0"
	sed -e 's/^	//' > "$drsdir/config.h" <<EOF
	#include <stdlib.h>

	#define VERSION "1.10.0~local"
	#define dbus_setenv my_dbus_setenv

	static inline int
	my_dbus_setenv (const char *name, const char *value)
	{
		if (value)
			return !setenv (name, value, 1);
		else
			return !unsetenv (name);
	}
EOF
	cc -I"${drsdir}" -o"${drsdir}/dbus-run-session" \
		"${drsdir}/dbus-run-session.c" \
		$(pkg-config --cflags --libs dbus-1) \
		${NULL}
	export PATH="${drsdir}:$PATH"

	# Force the build to be run even though dbus is less than version 1.8.
	export DBUS_CFLAGS="$(pkg-config --cflags dbus-1)"
	export DBUS_LIBS="$(pkg-config --libs dbus-1)"
fi

NOCONFIGURE=1 ./autogen.sh

e=0
(
	cd "$builddir" && "${srcdir}/configure" \
		--enable-installed-tests \
		--prefix="$prefix" \
		${NULL}
) || e=1
if [ "x$e" != x0 ] || [ -n "$TRAVIS" ]; then
	cat "$builddir/config.log"
fi
test "x$e" = x0

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

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

dbus_ci_pyversion="$(${PYTHON:-python} -c 'import distutils.sysconfig; print(distutils.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

# re-run the tests with dbus-python only installed via pip
if [ -n "$VIRTUAL_ENV" ]; then
	rm -fr "${prefix}/lib/python$dbus_ci_pyversion/site-packages"
	pip install -vvv "${builddir}"/dbus-python-*.tar.gz
	gnome-desktop-testing-runner dbus-python
fi