From c972cf6d46817a01a24fefec81b2f47c29da86c8 Mon Sep 17 00:00:00 2001 From: Inforithmics Date: Sat, 20 Sep 2025 09:12:14 +0200 Subject: [PATCH] set vulkan path --- .github/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a81abd5d2..1ba1afbf6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -142,11 +142,12 @@ jobs: $ErrorActionPreference = "Stop" if ("${{ steps.cache-install.outputs.cache-hit }}" -ne 'true') { Invoke-WebRequest -Uri "${{ matrix.install }}" -OutFile "install.exe" - Start-Process -FilePath .\install.exe -ArgumentList '-install' -NoNewWindow -Wait + Start-Process -FilePath .\install.exe /S } $vulkanPath = (Resolve-Path "C:\VulkanSDK\*").path echo "$vulkanPath\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "VULKAN_SDK=$vulkanPath" >> $env:GITHUB_ENV - if: ${{ !cancelled() && steps.cache-install.outputs.cache-hit != 'true' }} uses: actions/cache/save@v4 with: