From 1ec3ded5eb382158e7a9018eb8edaf7ffdad4a72 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 15 Feb 2024 21:30:08 +0000 Subject: [PATCH] ci: Temporarily disable --fatal-meson-warnings on msys2 CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For the same reasons as in commit 71061fdcb33b8c26f5f8467c, but in this case we can’t downgrade the version of Meson on the CI runner (see the previous commit), so just tell it to shut up instead. Signed-off-by: Philip Withnall Helps: #3262 --- .gitlab-ci/test-msys2.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/test-msys2.sh b/.gitlab-ci/test-msys2.sh index 98bd00ca8..304f94cf9 100755 --- a/.gitlab-ci/test-msys2.sh +++ b/.gitlab-ci/test-msys2.sh @@ -35,8 +35,13 @@ PATH="$(cygpath "$USERPROFILE")/.local/bin:$HOME/.local/bin:$PATH" DIR="$(pwd)" export PATH CFLAGS +# FIXME: We can’t use ${MESON_COMMON_OPTIONS} here because this script installs +# Meson 1.3. See the comment in .gitlab-ci.yml about the same problem on +# FreeBSD. # shellcheck disable=SC2086 -meson setup ${MESON_COMMON_OPTIONS} \ +meson setup \ + --buildtype=debug \ + --wrap-mode=nodownload \ --werror \ -Ddocumentation=true \ -Dintrospection=enabled \