From 264ddd1533c62c988d5fd3ae44c3443dee6c5624 Mon Sep 17 00:00:00 2001 From: Luca Bacci Date: Wed, 8 May 2024 13:50:40 +0200 Subject: [PATCH] ci: Do not use --fatal-meson-warnings in MSYS2 CI We're not using a pinned Meson version anymore. As this is a stable branch, we don't bother with warnings from newer Meson releases. --- .gitlab-ci/test-msys2.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/test-msys2.sh b/.gitlab-ci/test-msys2.sh index c63b2a22b..5d4ff86fc 100755 --- a/.gitlab-ci/test-msys2.sh +++ b/.gitlab-ci/test-msys2.sh @@ -33,10 +33,10 @@ export PATH CFLAGS if [[ "$MSYSTEM" == "CLANG64" ]]; then # FIXME: fix the clang build warnings # shellcheck disable=SC2086 - meson setup ${MESON_COMMON_OPTIONS} _build + meson setup --buildtype debug --wrap-mode=nodownload _build else # shellcheck disable=SC2086 - meson setup ${MESON_COMMON_OPTIONS} --werror _build + meson setup --buildtype debug --wrap-mode=nodownload --werror _build fi meson compile -C _build