diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/verify.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index b5d338199..19c3a4089 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml | |||
| @@ -84,13 +84,16 @@ jobs: | |||
| 84 | # due to how chocolatey works, only cmd.exe is supported here | 84 | # due to how chocolatey works, only cmd.exe is supported here |
| 85 | shell: cmd | 85 | shell: cmd |
| 86 | run: | | 86 | run: | |
| 87 | choco install vulkan-sdk wget | 87 | choco install wget |
| 88 | call refreshenv | 88 | call refreshenv |
| 89 | wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip | 89 | wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip |
| 90 | 7z x buildcache-windows.zip | 90 | 7z x buildcache-windows.zip |
| 91 | copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin | 91 | copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin |
| 92 | rmdir buildcache | 92 | rmdir buildcache |
| 93 | echo %PATH% >> %GITHUB_PATH% | 93 | echo %PATH% >> %GITHUB_PATH% |
| 94 | - name: Install Vulkan SDK | ||
| 95 | shell: pwsh | ||
| 96 | run: .\.ci\scripts\windows\install-vulkan-sdk.ps1 | ||
| 94 | - name: Set up MSVC | 97 | - name: Set up MSVC |
| 95 | uses: ilammy/msvc-dev-cmd@v1 | 98 | uses: ilammy/msvc-dev-cmd@v1 |
| 96 | - uses: actions/checkout@v3 | 99 | - uses: actions/checkout@v3 |