From 432fad04e7aaad1f10d732a51665ecbe934246c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Fri, 22 Feb 2019 10:22:49 +0100 Subject: [PATCH] gitlab-ci: Run make distcheck in autotools build & test job We don't set the PIGLIT_DIR and XTS_DIR environment variables for make distcheck for now, otherwise it complains about files left behind by piglit. --- .gitlab-ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3e9df00d3..4cb5e7d33 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -64,8 +64,6 @@ debian-testing: - ccache/ variables: LC_ALL: C.UTF-8 - PIGLIT_DIR: /root/piglit - XTEST_DIR: /root/xts before_script: - export CCACHE_BASEDIR="$PWD" - export CCACHE_DIR="$PWD/ccache" @@ -81,9 +79,10 @@ autotools-build-and-test: script: - mkdir build/ - cd build/ + - ../autogen.sh --prefix=/usr + - make -j$(nproc) distcheck - | - ../autogen.sh --prefix=/usr - make -j$(nproc) install + export PIGLIT_DIR=/root/piglit XTEST_DIR=/root/xts set +e set -x make -j$(nproc) check @@ -93,6 +92,9 @@ autotools-build-and-test: meson-build-and-test: extends: .common-build-and-test + variables: + PIGLIT_DIR: /root/piglit + XTEST_DIR: /root/xts script: - meson -Dprefix=/usr build/ - |