From 121b46003574f8f31a9a037c1df7bb56d60ac32b Mon Sep 17 00:00:00 2001 From: beau-lunarg Date: Fri, 29 Nov 2024 10:54:15 -0800 Subject: [PATCH] Download vulkan sdk and set up path to make vulkan loader available during tests --- .github/workflows/ci_build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml index 5b136f2c7..ecd5df458 100644 --- a/.github/workflows/ci_build.yml +++ b/.github/workflows/ci_build.yml @@ -52,6 +52,9 @@ jobs: python scripts\build.py --skip-check-code-style --config ${{ matrix.config.type }} --parallel 0 - name: Run test app test cases run: | + curl.exe -o vulkan-sdk.zip https://sdk.lunarg.com/sdk/download/1.3.296.0/windows/VulkanRT-1.3.296.0-Components.zip + Expand-Archive vulkan-sdk.zip -DestinationPath vulkan-sdk + $env:Path += vulkan-sdk\VulkanRT-1.3.296-Components\x64 cd ${{matrix.config.build_dir}}\windows\x64\output\bin ./run-tests.ps1 - name: Prepare artifacts