From 613f938ecf3070a67003b7c994df3cbbe7b52c19 Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:52:22 +0300 Subject: [PATCH] fix: add vulkan runtime to ci test --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b68efb99..1ca49a4e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -66,6 +66,12 @@ jobs: .\vulkan.exe --root C:\vulkan --accept-licenses --default-answer --confirm-command install echo "VULKAN_SDK=C:\vulkan" >> $env:GITHUB_ENV Copy-Item -Path "C:\vulkan\Bin\*.dll" -Destination "." -Recurse + + # Add Vulkan runtime DLL to PATH + C:\msys64\usr\bin\wget https://sdk.lunarg.com/sdk/download/1.3.290.0/windows/VulkanRT-1.3.290.0-Components.zip -O vulkan_components.exe + 7z x vulkan_components.exe + echo "$pwd\VulkanRT-1.3.290.0-Components\x64" | Out-File -FilePath $env:GITHUB_PATH -Append + if: ${{ contains(matrix.platform, 'windows') && contains(matrix.cmake-args, 'DGGML_VULKAN=ON') }} - name: Prepare Vulkan SDK for Linux