summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar Morph2023-07-07 03:37:27 -0400
committerGravatar GitHub2023-07-07 03:37:27 -0400
commitd6a9ed32e6a8315fc5aef0da70de31256fc86a2b (patch)
treee9a5e1d828b14f85d030f3b3613d4d8bf94a3a88 /.github
parentMerge pull request #10999 from Morph1984/fix-install-progress (diff)
parentgeneral: Update VulkanSDK and Vulkan-Headers (diff)
downloadyuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar.gz
yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.tar.xz
yuzu-d6a9ed32e6a8315fc5aef0da70de31256fc86a2b.zip
Merge pull request #11041 from Morph1984/vksdk
ci: Download and install Vulkan SDK directly from LunarG
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/verify.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index b5d338199..6420fd82b 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -73,6 +73,10 @@ jobs:
73 needs: format 73 needs: format
74 runs-on: windows-2022 74 runs-on: windows-2022
75 steps: 75 steps:
76 - uses: actions/checkout@v3
77 with:
78 submodules: recursive
79 fetch-depth: 0
76 - name: Set up cache 80 - name: Set up cache
77 uses: actions/cache@v3 81 uses: actions/cache@v3
78 with: 82 with:
@@ -84,19 +88,18 @@ jobs:
84 # due to how chocolatey works, only cmd.exe is supported here 88 # due to how chocolatey works, only cmd.exe is supported here
85 shell: cmd 89 shell: cmd
86 run: | 90 run: |
87 choco install vulkan-sdk wget 91 choco install wget
88 call refreshenv 92 call refreshenv
89 wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip 93 wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip
90 7z x buildcache-windows.zip 94 7z x buildcache-windows.zip
91 copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin 95 copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin
92 rmdir buildcache 96 rmdir buildcache
93 echo %PATH% >> %GITHUB_PATH% 97 echo %PATH% >> %GITHUB_PATH%
98 - name: Install Vulkan SDK
99 shell: pwsh
100 run: .\.ci\scripts\windows\install-vulkan-sdk.ps1
94 - name: Set up MSVC 101 - name: Set up MSVC
95 uses: ilammy/msvc-dev-cmd@v1 102 uses: ilammy/msvc-dev-cmd@v1
96 - uses: actions/checkout@v3
97 with:
98 submodules: recursive
99 fetch-depth: 0
100 - name: Configure 103 - name: Configure
101 env: 104 env:
102 CC: cl.exe 105 CC: cl.exe