From 6a7136d5fbc2393da8dbfb299d92372488df08aa Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Wed, 10 Aug 2022 16:35:28 +0200 Subject: [PATCH] ci: Disable -Werror on wayland submodule CI is mostly interested in GTK not introducing compiler warnings, other submodules like Wayland might have their own and that shouldn't hinder CI testing of GTK. Disable -Werror for the wayland submodule, and let it be fixed independently at some point. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c71cac32dc..fb4597904a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ stages: # Common variables variables: - COMMON_MESON_FLAGS: "-Dwerror=true -Dglib:werror=false -Dpango:werror=false -Dgtk-doc:werror=false -Dwayland-protocols:werror=false -Dsysprof:werror=false" + COMMON_MESON_FLAGS: "-Dwerror=true -Dglib:werror=false -Dpango:werror=false -Dgtk-doc:werror=false -Dwayland-protocols:werror=false -Dsysprof:werror=false -Dwayland:werror=false" BACKEND_FLAGS: "-Dx11-backend=true -Dwayland-backend=true -Dbroadway-backend=true" FEATURE_FLAGS: "-Dvulkan=enabled -Dcloudproviders=enabled" MESON_TEST_TIMEOUT_MULTIPLIER: 3