Skip to content

Commit 2fa632c

Browse files
committed
clean way to deal with moltenvk
1 parent 51042a0 commit 2fa632c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/macos_builds_deployment.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,12 @@ jobs:
6565
uses: ./godot-engine/.github/actions/godot-deps
6666
- name: Setup Vulkan SDK
6767
run: |
68-
chmod +x ./.github/workflows/install_vulkan_sdk_macos.sh
69-
./.github/workflows/install_vulkan_sdk_macos.sh
68+
# Download and install the Vulkan SDK.
69+
curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg" -o /tmp/vulkan-sdk.dmg
70+
hdiutil attach /tmp/vulkan-sdk.dmg -mountpoint /Volumes/vulkan-sdk
71+
/Volumes/vulkan-sdk/InstallVulkan.app/Contents/MacOS/InstallVulkan \
72+
--accept-licenses --default-answer --confirm-command install
73+
7074
- name: Setup Godot build cache
7175
uses: ./godot-engine/.github/actions/godot-cache
7276
with:

0 commit comments

Comments
 (0)