From d4c292ed4626bfe23bb3f05596eafce074701909 Mon Sep 17 00:00:00 2001 From: Ahmed Hesham <117350656+ahesham-arm@users.noreply.github.com> Date: Tue, 18 Mar 2025 16:04:14 +0000 Subject: [PATCH] Fix broken CI on MacOS (#2341) LunarG has changed the SDK file hosted for MacOS v1.3.275.0 from a .zip file to a .dmg file with the old hyperlink transparently redirecting to the new one. The script expects a .zip archive so it fails when it downloads a .dmg file. Bump the Vulkan SDK version to 1.4.309.0, which is the latest version and is provided as a .zip archive. Signed-off-by: Ahmed Hesham --- .github/workflows/presubmit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index 665799c8..2c05c369 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -72,7 +72,7 @@ jobs: - name: Install Vulkan SDK uses: humbletim/install-vulkan-sdk@main with: - version: 1.3.275.0 + version: 1.4.309.0 cache: true - name: Install Android NDK if: ${{ matrix.arch == 'android-arm' || matrix.arch == 'android-aarch64' }}