From d445be01f5edc7e7a324444c73e221c9ed75602e Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Wed, 24 Oct 2018 14:47:02 +0300 Subject: gitlab-ci: Do meson build with oldest supported meson Documentation building differs for meson < 0.47, so let's make sure that it works. Also remove a comment that has slipped through. Signed-off-by: Arkadiusz Hiler Reviewed-by: Daniel Vetter --- .gitlab-ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1814d8b6..bd1ddb79 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,13 +21,22 @@ stages: build:tests-fedora: stage: build script: - # Feodora does not have peg packaged - meson $MESON_OPTIONS build - ninja -C build artifacts: paths: - build +# documentation building is different with meson<0.47 +build:tests-fedora-oldest-meson: + stage: build + script: + - dnf remove -y meson + - pip3 install /usr/src/meson-*.tar.gz + - meson $MESON_OPTIONS build + - ninja -C build + - ninja -C build igt-gpu-tools-doc + build:tests-debian-meson: image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian:latest stage: build -- cgit v1.2.3