summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorGravatar Morph2022-09-16 12:47:51 -0400
committerGravatar GitHub2022-09-16 12:47:51 -0400
commit44ccec78463ec5b177fa027866b8923a71dbba88 (patch)
treef00144f557a953df761f973d2baaaa34a35d1f3f /.ci
parentMerge pull request #6667 from lat9nq/ea-appimage (diff)
parentci/windows: Upload debugging symbols (diff)
downloadyuzu-44ccec78463ec5b177fa027866b8923a71dbba88.tar.gz
yuzu-44ccec78463ec5b177fa027866b8923a71dbba88.tar.xz
yuzu-44ccec78463ec5b177fa027866b8923a71dbba88.zip
Merge pull request #8682 from lat9nq/dumpy
yuzu qt: Add option to create Windows crash dumps
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/scripts/windows/docker.sh1
-rw-r--r--.ci/scripts/windows/upload.ps14
-rw-r--r--.ci/templates/build-msvc.yml2
3 files changed, 4 insertions, 3 deletions
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 .. \
21 -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \ 21 -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
22 -DENABLE_QT_TRANSLATION=ON \ 22 -DENABLE_QT_TRANSLATION=ON \
23 -DUSE_CCACHE=ON \ 23 -DUSE_CCACHE=ON \
24 -DYUZU_CRASH_DUMPS=ON \
24 -DYUZU_USE_BUNDLED_SDL2=OFF \ 25 -DYUZU_USE_BUNDLED_SDL2=OFF \
25 -DYUZU_USE_EXTERNAL_SDL2=OFF \ 26 -DYUZU_USE_EXTERNAL_SDL2=OFF \
26 -DYUZU_TESTS=OFF \ 27 -DYUZU_TESTS=OFF \
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") {
65 # None of the other GHA builds are including source, so commenting out today 65 # None of the other GHA builds are including source, so commenting out today
66 #Copy-Item $MSVC_SOURCE_TARXZ -Destination "artifacts" 66 #Copy-Item $MSVC_SOURCE_TARXZ -Destination "artifacts"
67 67
68 # Are debug symbols important? 68 # Debugging symbols
69 # cp .\build\bin\yuzu*.pdb .\pdb\ 69 cp .\build\bin\yuzu*.pdb .\artifacts\
70 70
71 # Write out a tag BUILD_TAG to environment for the Upload step 71 # Write out a tag BUILD_TAG to environment for the Upload step
72 # We're getting ${{ github.event.number }} as $env:PR_NUMBER" 72 # We're getting ${{ github.event.number }} as $env:PR_NUMBER"
diff --git a/.ci/templates/build-msvc.yml b/.ci/templates/build-msvc.yml
index a2ee71bd8..ea405e5dc 100644
--- a/.ci/templates/build-msvc.yml
+++ b/.ci/templates/build-msvc.yml
@@ -9,7 +9,7 @@ parameters:
9steps: 9steps:
10- script: choco install vulkan-sdk 10- script: choco install vulkan-sdk
11 displayName: 'Install vulkan-sdk' 11 displayName: 'Install vulkan-sdk'
12- script: refreshenv && mkdir build && cd build && cmake -G "Visual Studio 17 2022" -A x64 -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release .. && cd .. 12- script: refreshenv && mkdir build && cd build && cmake -G "Visual Studio 17 2022" -A x64 -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release -DYUZU_CRASH_DUMPS=ON .. && cd ..
13 displayName: 'Configure CMake' 13 displayName: 'Configure CMake'
14- task: MSBuild@1 14- task: MSBuild@1
15 displayName: 'Build' 15 displayName: 'Build'