diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml index 671d5c52a..620d4d7b0 100644 --- a/.github/workflows/android_builds.yml +++ b/.github/workflows/android_builds.yml @@ -2,9 +2,11 @@ name: 🤖 Android Builds on: [push, pull_request] # Global Settings +# disable werrors for now +# werror=yes env: GODOT_BASE_BRANCH: 3.x - SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no + SCONSFLAGS: verbose=yes warnings=all debug_symbols=no concurrency: group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-android diff --git a/.github/workflows/ios_builds.yml b/.github/workflows/ios_builds.yml index 2e228b188..076a70911 100644 --- a/.github/workflows/ios_builds.yml +++ b/.github/workflows/ios_builds.yml @@ -2,9 +2,11 @@ name: 🍏 iOS Builds on: [push, pull_request] # Global Settings +# disable werrors for now +# werror=yes env: GODOT_BASE_BRANCH: 3.x - SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no + SCONSFLAGS: verbose=yes warnings=all debug_symbols=no concurrency: group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-ios diff --git a/.github/workflows/javascript_builds.yml b/.github/workflows/javascript_builds.yml index df26cdd2a..dfc9b9ab1 100644 --- a/.github/workflows/javascript_builds.yml +++ b/.github/workflows/javascript_builds.yml @@ -2,9 +2,11 @@ name: 🌐 JavaScript Builds on: [push, pull_request] # Global Settings +# disable werrors for now +# werror=yes env: GODOT_BASE_BRANCH: 3.x - SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no + SCONSFLAGS: verbose=yes warnings=all debug_symbols=no EM_VERSION: 2.0.25 EM_CACHE_FOLDER: "emsdk-cache"