From 84e59fc9e59ba51900931ceeafb36d517494112e Mon Sep 17 00:00:00 2001 From: Hans-Kristian Arntzen Date: Thu, 6 Jul 2023 15:38:10 +0200 Subject: [PATCH] [ci] Download glslangValidator.exe directly rather than using choco. The choco package is extremely outdated and breaks now. --- .github/workflows/test-build-windows.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-build-windows.yml b/.github/workflows/test-build-windows.yml index e4844bbba..6d8489ad3 100644 --- a/.github/workflows/test-build-windows.yml +++ b/.github/workflows/test-build-windows.yml @@ -16,9 +16,8 @@ jobs: - name: Setup glslangValidator shell: pwsh run: | - choco install vulkan-sdk -y - Write-Output "$([System.Environment]::GetEnvironmentVariable('VULKAN_SDK', 'Machine'))\Bin" ` - | Out-File -FilePath "${Env:GITHUB_PATH}" -Append + Invoke-WebRequest -Uri "https://raw.githubusercontent.com/HansKristian-Work/vkd3d-proton-ci/main/glslangValidator.exe" -OutFile "glslangValidator.exe" + Write-Output "$pwd" | Out-File -FilePath "${Env:GITHUB_PATH}" -Append - name: Setup Meson shell: pwsh