summaryrefslogtreecommitdiff
path: root/.github/workflows/windows_builds.yml
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-02-22 12:49:54 +0100
committerGitHub <noreply@github.com>2021-02-22 12:49:54 +0100
commit114beb1bee5c93208f4cbc115ae2f7cc8b4346ac (patch)
tree93ef5aff514de00611ba3c0126b23aa8c74d8e6e /.github/workflows/windows_builds.yml
parent8107cbd66e1db45a28a8fcd1869320e13a4c741d (diff)
parentcaea551d4169a7dc1d13827314f1c9ace6e50029 (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/windows_builds.yml')
-rw-r--r--.github/workflows/windows_builds.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml
index 19ff555b56..b7cc127226 100644
--- a/.github/workflows/windows_builds.yml
+++ b/.github/workflows/windows_builds.yml
@@ -5,7 +5,7 @@ on: [push, pull_request]
# SCONS_CACHE for windows must be set in the build environment
env:
GODOT_BASE_BRANCH: master
- SCONSFLAGS: platform=windows verbose=yes warnings=all werror=yes --jobs=2 module_text_server_fb_enabled=yes
+ SCONSFLAGS: platform=windows verbose=yes warnings=all werror=yes debug_symbols=no --jobs=2 module_text_server_fb_enabled=yes
SCONS_CACHE_MSVC_CONFIG: true
SCONS_CACHE_LIMIT: 3072
@@ -110,7 +110,7 @@ jobs:
env:
SCONS_CACHE: /.scons_cache/
run: |
- scons target=release tools=no debug_symbols=no
+ scons target=release tools=no
ls -l bin/
- uses: actions/upload-artifact@v2