From d4f60b54628dfb7ac5d1a218f03aa2e94ec4026a Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 10 Feb 2025 15:00:16 +0100 Subject: [PATCH] ci: workaround for building xf86-video-intel via autotools This driver's meson build scripts are currently broken, but autotools still works fine. So add a little workaround for forcing it to be built via autotools, even if meson.build file is there. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ab17016d6..65b309042 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -276,7 +276,7 @@ xf86-driver-build-test: - git clone "$REPO" "$DRIVER" - git -C "$DRIVER" checkout "$SHA" - | - if [[ -e "$DRIVER/meson.build" ]]; then + if [[ -e "$DRIVER/meson.build" ]] && [[ "$DRIVER" != "xf86-video-intel" ]]; then .gitlab-ci/meson-build.sh -C "$DRIVER" --skip-test else pushd "$DRIVER" || exit 1