summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-05-06 20:35:14 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2018-05-06 20:48:39 +0200
commit7e338d40ccd4388cdeadaabaf365f02f54278046 (patch)
treeec0e231a7fb1809c837e8b8e4ffce359d6983a94 /.gitlab-ci
parentc85075972b7fe16d0dd05d9136fdb8c1f3e8f39d (diff)
downloadpygobject-7e338d40ccd4388cdeadaabaf365f02f54278046.tar.gz
meson: don't autodetect pycairo support, force it and add an option to disable it
If you don't want pycairo support pass "-Dpycairo=false"
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x.gitlab-ci/test-docker.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci/test-docker.sh b/.gitlab-ci/test-docker.sh
index 0b886772..ec09cf8f 100755
--- a/.gitlab-ci/test-docker.sh
+++ b/.gitlab-ci/test-docker.sh
@@ -28,6 +28,7 @@ if [[ "${PYIMPL}" != "PyPy" ]]; then
# https://github.com/mesonbuild/meson/pull/3445
/usr/bin/python3 -m pip install --user meson
export PATH="${HOME}/.local/bin:${PATH}"
+ export PKG_CONFIG_PATH="$(python -c 'import sys; sys.stdout.write(sys.prefix)')/lib/pkgconfig"
meson _build -Dpython="$(which python)"
ninja -C _build
rm -Rf _build