diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/verify.yml | 13 |
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: needs: format runs-on: windows-2022 steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Set up cache uses: actions/cache@v3 with: @@ -84,19 +88,18 @@ jobs: # due to how chocolatey works, only cmd.exe is supported here shell: cmd run: | - choco install vulkan-sdk wget + choco install wget call refreshenv wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip 7z x buildcache-windows.zip copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin rmdir buildcache echo %PATH% >> %GITHUB_PATH% + - name: Install Vulkan SDK + shell: pwsh + run: .\.ci\scripts\windows\install-vulkan-sdk.ps1 - name: Set up MSVC uses: ilammy/msvc-dev-cmd@v1 - - uses: actions/checkout@v3 - with: - submodules: recursive - fetch-depth: 0 - name: Configure env: CC: cl.exe |