From 32c41c8c986daf5720a1d63497c7207d78e46312 Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 16 Mar 2022 11:10:14 +0100 Subject: [PATCH] Disable werrors=yes for some of the platforms for github actions. --- .github/workflows/android_builds.yml | 4 +++- .github/workflows/ios_builds.yml | 4 +++- .github/workflows/javascript_builds.yml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) 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"