From e88235710e21afaee47f2d031dbb79ced0f7eca6 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 14 Oct 2024 16:51:47 +0200 Subject: [PATCH] ci: don't build whole Xorg in per-driver jobs The per-driver jobs only need the SDK headers, so we can speed things up and save a lot CPU time by not actually building the whole Xorg source. Signed-off-by: Enrico Weigelt, metux IT consult --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb2c1f61c..d15f70a64 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -276,7 +276,7 @@ xf86-driver-build-test: variables: GIT_DEPTH: 1 MESON_ARGS: -Dprefix=/usr/ - MESON_EXTRA_ARGS: -Dxwayland=false -Dxnest=false -Dxvfb=false -Dxquartz=false -Ddocs=false + MESON_EXTRA_ARGS: -Dxwayland=false -Dxnest=false -Dxvfb=false -Dxquartz=false -Ddocs=false -Dxorg_sdk=true -Dxorg=false rules: - if: $CI_PIPELINE_SOURCE == 'merge_request_event' changes: