We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f196cc6 commit 9316574Copy full SHA for 9316574
.github/workflows/ci-macos.yml
@@ -34,7 +34,9 @@ jobs:
34
# The zip extracts to InstallVulkan.app
35
if [ -d "/tmp/InstallVulkan.app" ]; then
36
echo "Using InstallVulkan.app installer..."
37
- sudo /tmp/InstallVulkan.app/Contents/MacOS/InstallVulkan --root ~/VulkanSDK/${VULKAN_SDK_VERSION} --accept-licenses --default-answer --confirm-command install
+ sudo /tmp/InstallVulkan.app/Contents/MacOS/InstallVulkan --root $HOME/VulkanSDK/${VULKAN_SDK_VERSION} --accept-licenses --default-answer --confirm-command install
38
+ echo "VULKAN_SDK=$HOME/VulkanSDK/${VULKAN_SDK_VERSION}" >> $GITHUB_ENV
39
+ echo "$HOME/VulkanSDK/${VULKAN_SDK_VERSION}/bin" >> $GITHUB_PATH
40
rm -rf /tmp/InstallVulkan.app
41
else
42
echo "Error: Could not find Vulkan SDK installer"
0 commit comments