diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-09 09:09:57 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-09 15:01:43 +0100 |
commit | 5af5c86ebc52f4f9d4b2ce46a0cc134b4273f122 (patch) | |
tree | db69347ac6345b07e37977c6d89bdf94dd853ebe /.github/workflows/macos_builds.yml | |
parent | 8a318fe1dd201dfecb26e1110df53c09864afd91 (diff) |
CI: Build with warnings=extra to catch 'em all
... on all platforms but MSVC, as it still has a number of unsolved warnings
in its `/Wall` level. Some of it might be valid, others might be overkill,
this needs further assessment and fixes. (We could also change the `extra`
level to `/W4` on MSVC if that's more meaningful.)
Diffstat (limited to '.github/workflows/macos_builds.yml')
-rw-r--r-- | .github/workflows/macos_builds.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos_builds.yml b/.github/workflows/macos_builds.yml index 5f9ad24ac7..401cfadc30 100644 --- a/.github/workflows/macos_builds.yml +++ b/.github/workflows/macos_builds.yml @@ -4,7 +4,7 @@ on: [push, pull_request] # Global Settings env: GODOT_BASE_BRANCH: master - SCONSFLAGS: platform=osx verbose=yes warnings=all werror=yes --jobs=2 + SCONSFLAGS: platform=osx verbose=yes warnings=extra werror=yes --jobs=2 SCONS_CACHE_LIMIT: 4096 jobs: |