From 5e3967fbff09ae08796b399f488329587777938f Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 5 Dec 2022 18:10:14 +0530 Subject: [PATCH] ci: pin hotdoc to 0.13.7 for now, 0.14 has a regression ``` ERROR: [links]: (mandatory-link-not-found): Mandatory link Link GstGLSinkBin -> None (GstGLSinkBin) could not be resolved ERROR: [links]: (mandatory-link-not-found): Mandatory link Link GstRTPMux -> None (GstRTPMux) could not be resolved ERROR: [links]: (mandatory-link-not-found): Mandatory link Link GstSRTSink -> None (GstSRTSink) could not be resolved ERROR: [links]: (mandatory-link-not-found): Mandatory link Link GstSRTSrc -> None (GstSRTSrc) could not be resolved ``` Same change was already made in the 1.20 branch: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1582#note_1669723 Part-of: --- ci/docker/fedora/prepare.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/docker/fedora/prepare.sh b/ci/docker/fedora/prepare.sh index ce51fb9..4347f0d 100644 --- a/ci/docker/fedora/prepare.sh +++ b/ci/docker/fedora/prepare.sh @@ -207,7 +207,9 @@ dnf remove -y meson # FIXME: Install ninja from rpm when we update our base image as we fail building # documentation with rust plugins as we the version from F31 we hit: # `ninja: error: build.ninja:26557: multiple outputs aren't (yet?) supported by depslog; bring this up on the mailing list if it affects you -pip3 install meson==0.62.2 hotdoc python-gitlab ninja tomli +# XXX: Pin hotdoc to 0.13.7 due to breakage with 0.14 +# https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1582#note_1669723 +pip3 install meson==0.62.2 hotdoc==0.13.7 python-gitlab ninja tomli # Remove gst-devel packages installed by builddep above -- 2.7.4