From 2fa632c4d06e6e61e5154625df6368e345e50f4f Mon Sep 17 00:00:00 2001 From: Gordon MacPherson Date: Tue, 26 Mar 2024 21:28:40 +0000 Subject: [PATCH] clean way to deal with moltenvk --- .github/workflows/macos_builds_deployment.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos_builds_deployment.yml b/.github/workflows/macos_builds_deployment.yml index f13970f8..a619b7e6 100644 --- a/.github/workflows/macos_builds_deployment.yml +++ b/.github/workflows/macos_builds_deployment.yml @@ -65,8 +65,12 @@ jobs: uses: ./godot-engine/.github/actions/godot-deps - name: Setup Vulkan SDK run: | - chmod +x ./.github/workflows/install_vulkan_sdk_macos.sh - ./.github/workflows/install_vulkan_sdk_macos.sh + # Download and install the Vulkan SDK. + curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg" -o /tmp/vulkan-sdk.dmg + hdiutil attach /tmp/vulkan-sdk.dmg -mountpoint /Volumes/vulkan-sdk + /Volumes/vulkan-sdk/InstallVulkan.app/Contents/MacOS/InstallVulkan \ + --accept-licenses --default-answer --confirm-command install + - name: Setup Godot build cache uses: ./godot-engine/.github/actions/godot-cache with: