summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorKyle Kienapfel <Docteh@users.noreply.github.com>2022-07-16 04:29:44 +0200
committerKyle Kienapfel <Docteh@users.noreply.github.com>2022-07-23 17:35:26 +0200
commit5cda63041749bdaaf39c8c2ccf25660b3c13f76d (patch)
tree5ba0368b83466eb11e510b60d02710e145199508 /.github
parentMerge pull request #8584 from Morph1984/qt5-cleanup (diff)
downloadyuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar.gz
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar.bz2
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar.lz
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar.xz
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.tar.zst
yuzu-5cda63041749bdaaf39c8c2ccf25660b3c13f76d.zip
Diffstat (limited to '.github')
-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'
on:
pull_request:
branches: [ master ]
+env:
+ PR_NUMBER: pr${{ github.event.number }}
jobs:
format:
@@ -99,7 +101,7 @@ jobs:
run: |
glslangValidator --version
mkdir build
- 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
+ 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
- name: Build
run: cmake --build build
- name: Cache Summary
@@ -112,3 +114,8 @@ jobs:
with:
name: msvc
path: artifacts/
+ - name: Upload EXE
+ uses: actions/upload-artifact@v3
+ with:
+ name: ${{ env.INDIVIDUAL_EXE }}
+ path: ${{ env.INDIVIDUAL_EXE }}