windows build 5
Some checks failed
demo.yaml / windows build 5 (push) Failing after 0s

This commit is contained in:
Jorijn van der Graaf 2026-02-23 02:38:20 +01:00
commit 277054e982

View file

@ -28,7 +28,7 @@ $vulkanBasePath = "C:\VulkanSDK"
$folders = Get-ChildItem -Path $vulkanBasePath -Directory
# Sort the folders by version and select the latest one
$latestVulkanVersion = $folders | Sort-Object { [Version]$_ .Name } -Descending | Select-Object -First 1
$latestVulkanVersion = $folders | Sort-Object { [Version]$_.Name } -Descending | Select-Object -First 1
# Store the latest version folder name and combine it with the base path to get the full path to Include
$vulkanSDKPath = Join-Path -Path $vulkanBasePath -ChildPath (Join-Path -Path $latestVulkanVersion.Name -ChildPath "Include")