summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/verify.yml19
1 files changed, 10 insertions, 9 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 6420fd82b..cbe6b0fbd 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -85,16 +85,17 @@ jobs:
85 restore-keys: | 85 restore-keys: |
86 ${{ runner.os }}-msvc- 86 ${{ runner.os }}-msvc-
87 - name: Install dependencies 87 - name: Install dependencies
88 # due to how chocolatey works, only cmd.exe is supported here 88 shell: pwsh
89 shell: cmd
90 run: | 89 run: |
91 choco install wget 90 $ErrorActionPreference = "Stop"
92 call refreshenv 91 $BuildCacheVer = "v0.28.4"
93 wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip 92 $File = "buildcache-windows.zip"
94 7z x buildcache-windows.zip 93 $Uri = "https://github.com/mbitsnbites/buildcache/releases/download/$BuildCacheVer/$File"
95 copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin 94 $WebClient = New-Object System.Net.WebClient
96 rmdir buildcache 95 $WebClient.DownloadFile($Uri, $File)
97 echo %PATH% >> %GITHUB_PATH% 96 7z x $File
97 $CurrentDir = Convert-Path .
98 echo "$CurrentDir/buildcache/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
98 - name: Install Vulkan SDK 99 - name: Install Vulkan SDK
99 shell: pwsh 100 shell: pwsh
100 run: .\.ci\scripts\windows\install-vulkan-sdk.ps1 101 run: .\.ci\scripts\windows\install-vulkan-sdk.ps1