From 4f99e84367a8fa426617f8408d848de52ae6ae43 Mon Sep 17 00:00:00 2001 From: Erico Nunes Date: Wed, 4 Sep 2024 19:02:08 +0200 Subject: [PATCH] docs/ci: pass -D platforms=[] to avoid dependencies Since commit 8f6fca89aa1 ("meson: delete dri3 build option"), the docs build attempts to find dependencies like xshmfence which are not found in the current docs image. Avoid checking for those dependencies by not enabling any platforms, which will skip the check overall. Signed-off-by: Erico Nunes Part-of: --- docs/gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gitlab-ci.yml b/docs/gitlab-ci.yml index d69fb702162..e052b893f48 100644 --- a/docs/gitlab-ci.yml +++ b/docs/gitlab-ci.yml @@ -8,7 +8,7 @@ - public/ script: - meson setup _build -D prefix=$(pwd) --auto-features=disabled - -D vulkan-drivers="" -D gallium-drivers="" -D glx=disabled + -D vulkan-drivers="" -D gallium-drivers="" -D platforms=[] -D glx=disabled -D video-codecs="" -D html-docs=enabled -D html-docs-path=public - meson compile -C _build - meson install -C _build