summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar Kyle Kienapfel2022-07-15 19:29:44 -0700
committerGravatar Kyle Kienapfel2022-07-23 08:35:26 -0700
commit5cda63041749bdaaf39c8c2ccf25660b3c13f76d (patch)
tree5ba0368b83466eb11e510b60d02710e145199508 /.github/workflows
parentMerge pull request #8584 from Morph1984/qt5-cleanup (diff)
downloadyuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar.gz
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar.xz
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.zip
package MSVC CI Builds differently, and include yuzu.exe
This is related to 8486 Ninja places the exe files into .\build\bin while MSBuild may place them into .\build\bin\Release upload.ps1 was originally written for use with Azure Dev Ops to cough up about 5 files and the script appears to be used for both CI and mainline builds GHA (GitHub Actions) makes available a single zip of the items uploaded by each Upload action (artifacts directory), so we want to work with that. I'm doing changes to upload.ps1 to accomplish this. The changes to the verify.yml are as follows -DGIT_BRANCH=pr-verify changes the header in yuzu, instead of saying HEAD-<hash>-dirty it'll say pr-verify-<hash> -DCLANG_FORMAT_SUFFIX=discordplzdontclang tricks the CMake stuff for discord-rpc to NOT run clang-format, as this was marking CI builds as dirty I'm also making it upload just the exe by itself, as the msvc builds are quite chunky. but maybe this is unnecessary. Currently the MSVC artifact option is a 274MB zip that contains 3 copies of the DLLs, and 4 copies of the source tarball, and zero copies of yuzu.exe This PR should have msvc artifacts of about 190MB that downloads as 81 MB zip
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/verify.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 88e3a9a72..887220441 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -3,6 +3,8 @@ name: 'yuzu verify'
3on: 3on:
4 pull_request: 4 pull_request:
5 branches: [ master ] 5 branches: [ master ]
6env:
7 PR_NUMBER: pr${{ github.event.number }}
6 8
7jobs: 9jobs:
8 format: 10 format:
@@ -99,7 +101,7 @@ jobs:
99 run: | 101 run: |
100 glslangValidator --version 102 glslangValidator --version
101 mkdir build 103 mkdir build
102 cmake . -B build -GNinja -DCMAKE_TOOLCHAIN_FILE="CMakeModules/MSVCCache.cmake" -DUSE_CCACHE=ON -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=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_VCPKG=ON 104 cmake . -B build -GNinja -DCMAKE_TOOLCHAIN_FILE="CMakeModules/MSVCCache.cmake" -DUSE_CCACHE=ON -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=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DGIT_BRANCH=pr-verify -DCLANG_FORMAT_SUFFIX=discordplzdontclang -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_VCPKG=ON
103 - name: Build 105 - name: Build
104 run: cmake --build build 106 run: cmake --build build
105 - name: Cache Summary 107 - name: Cache Summary
@@ -112,3 +114,8 @@ jobs:
112 with: 114 with:
113 name: msvc 115 name: msvc
114 path: artifacts/ 116 path: artifacts/
117 - name: Upload EXE
118 uses: actions/upload-artifact@v3
119 with:
120 name: ${{ env.INDIVIDUAL_EXE }}
121 path: ${{ env.INDIVIDUAL_EXE }}