From 66e34fe914e3dd5791166c55578219cf48793cb5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michel=20D=C3=A4nzer?= Date: Tue, 7 Mar 2023 17:24:46 +0100 Subject: [PATCH] ci: Split up -Werror workarounds for debian-mingw32-x86_64 job Most of them are only needed for C++ code, one of them only for C. Part-of: --- .gitlab-ci/build/gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/build/gitlab-ci.yml b/.gitlab-ci/build/gitlab-ci.yml index 930283f..5af7d53 100644 --- a/.gitlab-ci/build/gitlab-ci.yml +++ b/.gitlab-ci/build/gitlab-ci.yml @@ -661,12 +661,13 @@ debian-ppc64el: UNWIND: "disabled" C_ARGS: > -Wno-error=format + -Wno-error=unused-but-set-variable + CPP_ARGS: > + -Wno-error=format -Wno-error=unused-function -Wno-error=unused-variable - -Wno-error=unused-but-set-variable -Wno-error=sign-compare -Wno-error=narrowing - CPP_ARGS: $C_ARGS GALLIUM_DRIVERS: "swrast,d3d12,zink" VULKAN_DRIVERS: "swrast,amd,microsoft-experimental" GALLIUM_ST: > -- 2.7.4