We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51042a0 commit 2fa632cCopy full SHA for 2fa632c
.github/workflows/macos_builds_deployment.yml
@@ -65,8 +65,12 @@ jobs:
65
uses: ./godot-engine/.github/actions/godot-deps
66
- name: Setup Vulkan SDK
67
run: |
68
- chmod +x ./.github/workflows/install_vulkan_sdk_macos.sh
69
- ./.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
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
+
74
- name: Setup Godot build cache
75
uses: ./godot-engine/.github/actions/godot-cache
76
with:
0 commit comments