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.
This commit is contained in:
Luca Bacci 2024-05-08 13:50:40 +02:00
parent 788388f4b8
commit 264ddd1533

View File

@ -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