diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-09-21 21:54:55 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-09-22 09:31:44 +0200 |
commit | c4fa301b6b3b8faa3f14558e5207263b5490213b (patch) | |
tree | 2bf257c2a92cacf699ecd823979378fd8bf39e8a /.github/workflows/windows_builds.yml | |
parent | c1e6c2c49a7a2c05649d79733e7edda382aa92df (diff) | |
download | redot-engine-c4fa301b6b3b8faa3f14558e5207263b5490213b.tar.gz |
CI: Build test binaries with debug symbols, then strip
This allows having good stacktraces when the tests crash.
Diffstat (limited to '.github/workflows/windows_builds.yml')
-rw-r--r-- | .github/workflows/windows_builds.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index ee689612f5..ad870ae58f 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: verbose=yes warnings=all werror=yes debug_symbols=no module_text_server_fb_enabled=yes + SCONSFLAGS: verbose=yes warnings=all werror=yes module_text_server_fb_enabled=yes SCONS_CACHE_MSVC_CONFIG: true concurrency: @@ -33,6 +33,7 @@ jobs: target: release tools: false tests: false + sconsflags: debug_symbols=no steps: - uses: actions/checkout@v2 @@ -50,7 +51,7 @@ jobs: - name: Compilation uses: ./.github/actions/godot-build with: - sconsflags: ${{ env.SCONSFLAGS }} + sconsflags: ${{ env.SCONSFLAGS }} ${{ matrix.sconsflags }} platform: windows target: ${{ matrix.target }} tools: ${{ matrix.tools }} @@ -63,6 +64,10 @@ jobs: run: | ${{ matrix.bin }} --test + - name: Prepare artifact + run: | + Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force + - name: Upload artifact uses: ./.github/actions/upload-artifact with: |