From d7f833ee75780bec0d10ca792ca3f7ebbfa36faf Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 19 Apr 2022 00:59:33 +0200 Subject: [PATCH] Disable werrors for the windows github actions for the time being, as it's complaining about sizeof(T) potentially being 0, which apparently it should never be. It will be re-enabled when I figure out what's causing this. --- .github/workflows/windows_builds.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index 978824154..6b4d7eaca 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -3,9 +3,10 @@ on: [push, pull_request] # Global Settings # SCONS_CACHE for windows must be set in the build environment +#werror=yes env: PANDEMONIUM_BASE_BRANCH: master - SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no + SCONSFLAGS: verbose=yes warnings=all debug_symbols=no SCONS_CACHE_MSVC_CONFIG: true concurrency: