From 8238533418c2884662d9b8440d19a384f0f9c374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 14 Jul 2023 00:51:19 +0200 Subject: [PATCH] ci: Make meson warnings fatal The Config variable that was removed in the previous commit was actually wrong (PACKAGE_VERSION vs. GETTEXT_VERSION), so the substituation didn't work. Meson warns about this, let's make these warnings fatal to catch similar issues during CI. Part-of: --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b1e7b25c0..275511e19 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -194,7 +194,7 @@ build: - meson mutter mutter/build --prefix=/usr - meson install -C mutter/build script: - - meson . build -Dbuildtype=debugoptimized -Dman=false --werror + - meson setup . build -Dbuildtype=debugoptimized -Dman=false --werror --fatal-meson-warnings - meson compile -C build - meson install -C build artifacts: