Skip to content

Commit b2962bb

Browse files
committed
Update CI workflow to download and install Vulkan SDK dynamically
1 parent db0dbe5 commit b2962bb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/CI.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ jobs:
5252
- name: Dependencies
5353
if: runner.os == 'macOS'
5454
run: |
55-
brew install vulkan-loader
55+
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 /
5659
5760
- name: Dependencies
5861
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)