diff options
Diffstat (limited to '.github/workflows')
| -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: | |||
| 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 |