You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
CI: Build without debug symbols to reduce cache size
We often hit "Too Many Requests" errors when uploading the cache with `actions/cache` because there's a limit of 10 GB every 5 minutes, and we can easily go over it when we amend or merge several PRs in a short timespan. This will make the CI artifacts less useful for debugging crashes but there's no real way around this.
This commit is contained in:
2
.github/workflows/javascript_builds.disabled
vendored
2
.github/workflows/javascript_builds.disabled
vendored
@@ -4,7 +4,7 @@ on: [push, pull_request]
|
||||
# Global Settings
|
||||
env:
|
||||
GODOT_BASE_BRANCH: master
|
||||
SCONSFLAGS: platform=javascript verbose=yes warnings=extra werror=yes --jobs=2
|
||||
SCONSFLAGS: platform=javascript verbose=yes warnings=extra werror=yes debug_symbols=no --jobs=2
|
||||
SCONS_CACHE_LIMIT: 4096
|
||||
EM_VERSION: 1.39.20
|
||||
EM_CACHE_FOLDER: 'emsdk-cache'
|
||||
|
||||
Reference in New Issue
Block a user