From 1bfd8a9fb1bcb73d101598e5a9cbef3e90db0d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 26 Aug 2023 19:24:11 +0100 Subject: [PATCH] ci: disable gstreamer-sharp tests for gcc/clang matrix builds gstreamer-sharp tests do some kind of nuget download as part of the configure, and this frequently fails on the CI (possibly because we're hammering it with parallel requests). Part-of: --- .gitlab-ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 13949f2e8c..e4aa7feced 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -379,7 +379,10 @@ build fedora gcc: # # VAAPI can't be build statically yet # subprojects/gstreamer-vaapi/meson.build:8:2: ERROR: Problem encountered: GStreamer-VAAPI plugin not supported with `static` builds yet. - MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dvaapi=disabled -Dpython=auto -Dgst-editing-services:python=disabled -Dintrospection=disabled -Ddoc=disabled" + # + # Disabling gstreamer-sharp tests because they download things as part of configure with + # nuget which frequently fails on the CI (possibly because we're hammering the site) + MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dvaapi=disabled -Dpython=auto -Dgst-editing-services:python=disabled -Dintrospection=disabled -Ddoc=disabled -Dgstreamer-sharp:tests=disabled" build fedora clang: extends: '.build fedora x86_64' @@ -414,7 +417,10 @@ build fedora clang: # # VAAPI can't be build statically yet # subprojects/gstreamer-vaapi/meson.build:8:2: ERROR: Problem encountered: GStreamer-VAAPI plugin not supported with `static` builds yet. - MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dvaapi=disabled -Dpython=auto -Dgst-editing-services:python=disabled -Dintrospection=disabled -Ddoc=disabled" + # + # Disabling gstreamer-sharp tests because they download things as part of configure with + # nuget which frequently fails on the CI (possibly because we're hammering the site) + MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dvaapi=disabled -Dpython=auto -Dgst-editing-services:python=disabled -Dintrospection=disabled -Ddoc=disabled -Dgstreamer-sharp:tests=disabled" .build windows: image: $WINDOWS_IMAGE