From 45b343d1d09f30193a1da52924ee83a834356fae Mon Sep 17 00:00:00 2001 From: lat9nq Date: Sat, 30 Jul 2022 09:18:33 -0400 Subject: ci,workflows: Enable crash dumps on MSVC builds ci/windows: Enable crash dumps on MinGW builds --- .ci/scripts/windows/docker.sh | 1 + 1 file changed, 1 insertion(+) (limited to '.ci/scripts') diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 790ba8218..6f522feed 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -21,6 +21,7 @@ cmake .. \ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \ -DENABLE_QT_TRANSLATION=ON \ -DUSE_CCACHE=ON \ + -DYUZU_CRASH_DUMPS=ON \ -DYUZU_USE_BUNDLED_SDL2=OFF \ -DYUZU_USE_EXTERNAL_SDL2=OFF \ -DYUZU_TESTS=OFF \ -- cgit v1.2.3 From 9dc9e501debda06ff31a3e2fe8875ffa0d94e40b Mon Sep 17 00:00:00 2001 From: lat9nq Date: Sat, 30 Jul 2022 12:41:30 -0400 Subject: ci/windows: Upload debugging symbols --- .ci/scripts/windows/upload.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.ci/scripts') diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 index d463281de..21abcd752 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 @@ -65,8 +65,8 @@ if ("$env:GITHUB_ACTIONS" -eq "true") { # None of the other GHA builds are including source, so commenting out today #Copy-Item $MSVC_SOURCE_TARXZ -Destination "artifacts" - # Are debug symbols important? - # cp .\build\bin\yuzu*.pdb .\pdb\ + # Debugging symbols + cp .\build\bin\yuzu*.pdb .\artifacts\ # Write out a tag BUILD_TAG to environment for the Upload step # We're getting ${{ github.event.number }} as $env:PR_NUMBER" -- cgit v1.2.3