From 66c5b13dd8cd91cde36af3c26a349e0f01fffbbf Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Mon, 9 Oct 2023 21:11:01 +0300 Subject: [PATCH] ci: docs: disable svthevcenc for the docs job While updating the base image we run into a handful of issues with the svthevcenc element. Disable it for now from the documentation job to not block the rest of the image update. We can revert this commit once [1] is fixed. [1]: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5447 Part-of: --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 873eaf24d7..52aec121a4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -877,11 +877,14 @@ valgrind ges: .documentation: extends: '.build fedora x86_64' variables: + # Disable svthevcenc until the following MR is merged + # https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5447 MESON_ARGS: >- ${SIMPLE_BUILD} -Ddoc=enabled -Drs=enabled -Dgst-docs:fatal_warnings=true + -Dgst-plugins-bad:svthevcenc=disabled # Disable werror for the docs build, we don't need it GST_WERROR: 'false' SUBPROJECTS_CACHE_DIR: "/subprojects"