aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-07-07 03:37:27 -0400
committerGitHub <noreply@github.com>2023-07-07 03:37:27 -0400
commitd6a9ed32e6a8315fc5aef0da70de31256fc86a2b (patch)
treee9a5e1d828b14f85d030f3b3613d4d8bf94a3a88 /.github/workflows
parent45ea712d39ca1ef69ecd7a016c7c07d38050519f (diff)
parente3937fe8ad7f64406ec1547df4649ed80663819a (diff)
Merge pull request #11041 from Morph1984/vksdk
ci: Download and install Vulkan SDK directly from LunarG
Diffstat (limited to '.github/workflows')
-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:
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