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 db0dbe5 commit b2962bbCopy full SHA for b2962bb
.github/workflows/CI.yaml
@@ -52,7 +52,10 @@ jobs:
52
- name: Dependencies
53
if: runner.os == 'macOS'
54
run: |
55
- brew install vulkan-loader
+ SDK_VERSION=$(curl -s https://vulkan.lunarg.com/sdk/latest/mac.txt)
56
+ curl -O https://sdk.lunarg.com/sdk/download/${SDK_VERSION}/mac/vulkan_sdk.zip
57
+ unzip vulkan_sdk.zip -d vulkan_sdk
58
+ sudo installer -pkg vulkan_sdk/vulkan_sdk.pkg -target /
59
60
61
if: runner.os == 'Windows'
0 commit comments