File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -348,12 +348,19 @@ jobs:
348348
349349 - name : Prepare Vulkan SDK Windows
350350 if : ${{ matrix.vulkan && (matrix.os == 'win') }}
351- continue-on-error : true
351+ # continue-on-error: true
352352 run : |
353353 curl.exe -o $env:RUNNER_TEMP/VulkanSDK-Installer.exe -L "https://sdk.lunarg.com/sdk/download/${env:VULKAN_VERSION}/windows/VulkanSDK-${env:VULKAN_VERSION}-Installer.exe"
354354 & "$env:RUNNER_TEMP\VulkanSDK-Installer.exe" --accept-licenses --default-answer --confirm-command install
355355 Add-Content $env:GITHUB_ENV "VULKAN_SDK=C:\VulkanSDK\${env:VULKAN_VERSION}"
356356 Add-Content $env:GITHUB_PATH "C:\VulkanSDK\${env:VULKAN_VERSION}\bin"
357+ - name : Debug Vulkan SDK env
358+ if : ${{ matrix.vulkan && runner.os == 'win' }}
359+ run : |
360+ echo "VULKAN_SDK=$env:VULKAN_SDK"
361+ dir "C:\VulkanSDK\1.3.261.1\Include\vulkan"
362+ where glslc
363+ shell : pwsh
357364
358365 - name : Get Cer for code signing
359366 if : runner.os == 'macOS'
You can’t perform that action at this time.
0 commit comments