Skip to content

Commit

Permalink
Merge pull request #233 from limbonaut/gha-fix-macos-vulkan
Browse files Browse the repository at this point in the history
GHA: Fix Vulkan SDK installation step
  • Loading branch information
limbonaut authored Oct 13, 2024
2 parents 7a1b56f + 6f318b8 commit 2b89d1d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,14 @@ jobs:
- name: Set up Vulkan SDK
run: |
sh misc/scripts/install_vulkan_sdk_macos.sh
# ! Note: Vulkan SDK changed packaging, so we need to inline these steps for the time being.
#sh misc/scripts/install_vulkan_sdk_macos.sh
curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.zip" -o /tmp/vulkan-sdk.zip
unzip /tmp/vulkan-sdk.zip -d /tmp
/tmp/InstallVulkan.app/Contents/MacOS/InstallVulkan --accept-licenses --default-answer --confirm-command install
rm -Rf /tmp/InstallVulkan.app
rm -f /tmp/vulkan-sdk.zip
- name: Set up scons cache
uses: actions/cache@v4
Expand Down

0 comments on commit 2b89d1d

Please sign in to comment.