diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-22 12:49:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 12:49:54 +0100 |
commit | 114beb1bee5c93208f4cbc115ae2f7cc8b4346ac (patch) | |
tree | 93ef5aff514de00611ba3c0126b23aa8c74d8e6e /.github/workflows/ios_builds.yml | |
parent | 8107cbd66e1db45a28a8fcd1869320e13a4c741d (diff) | |
parent | caea551d4169a7dc1d13827314f1c9ace6e50029 (diff) |
Merge pull request #46309 from akien-mga/ci-no-debug-symbols
CI: Build without debug symbols to reduce cache size
Diffstat (limited to '.github/workflows/ios_builds.yml')
-rw-r--r-- | .github/workflows/ios_builds.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ios_builds.yml b/.github/workflows/ios_builds.yml index 73a1b2934e..c4da3cb683 100644 --- a/.github/workflows/ios_builds.yml +++ b/.github/workflows/ios_builds.yml @@ -4,7 +4,7 @@ on: [push, pull_request] # Global Settings env: GODOT_BASE_BRANCH: master - SCONSFLAGS: platform=iphone verbose=yes warnings=extra werror=yes --jobs=2 module_text_server_fb_enabled=yes + SCONSFLAGS: platform=iphone verbose=yes warnings=extra werror=yes debug_symbols=no --jobs=2 module_text_server_fb_enabled=yes SCONS_CACHE_LIMIT: 4096 jobs: |