summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-02-06 23:04:18 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2018-02-06 23:04:18 +0100
commite56975aaf9bb976397b5961b7b34adcdd91b5a94 (patch)
treec113cc36c4f69a71f95cccefdf855b7d31a7757c /.gitlab-ci
parent4b315835f7006655fe9fa23c02ec6096478114e5 (diff)
downloadpygobject-e56975aaf9bb976397b5961b7b34adcdd91b5a94.tar.gz
gitlab-ci: adjust PKG_CONFIG_PATH for pycairo
pycairo git now installs things into $prefix/lib/pkgconfig
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x.gitlab-ci/test-docker.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/test-docker.sh b/.gitlab-ci/test-docker.sh
index c371f715..32580047 100755
--- a/.gitlab-ci/test-docker.sh
+++ b/.gitlab-ci/test-docker.sh
@@ -8,7 +8,7 @@ source /tmp/venv/bin/activate
python -m pip install git+https://github.com/pygobject/pycairo.git
python -m pip install flake8
-export PKG_CONFIG_PATH=/tmp/venv/share/pkgconfig
+export PKG_CONFIG_PATH=/tmp/venv/lib/pkgconfig
export MALLOC_CHECK_=3
export MALLOC_PERTURB_=$((${RANDOM} % 255 + 1))
PYVER=$(python -c "import sys; sys.stdout.write(str(sys.version_info[0]))")