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 \