File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed
Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change 3434 # The zip extracts to InstallVulkan.app
3535 if [ -d "/tmp/InstallVulkan.app" ]; then
3636 echo "Using InstallVulkan.app installer..."
37- 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
37+ # Install to system location (default) instead of custom --root
38+ sudo /tmp/InstallVulkan.app/Contents/MacOS/InstallVulkan --accept-licenses --default-answer --confirm-command install
4039 rm -rf /tmp/InstallVulkan.app
4140 else
4241 echo "Error: Could not find Vulkan SDK installer"
5554 vcpkg install --triplet=arm64-osx
5655 vcpkg integrate install
5756 - name : Build
58- run : |
59- export VULKAN_SDK="$HOME/VulkanSDK/${VULKAN_SDK_VERSION}"
60- export PATH="$HOME/VulkanSDK/${VULKAN_SDK_VERSION}/bin:$PATH"
61- echo "Checking Vulkan SDK installation:"
62- ls -la "$HOME/VulkanSDK/" || echo "VulkanSDK directory not found"
63- ls -la "$HOME/VulkanSDK/${VULKAN_SDK_VERSION}/" || echo "Version directory not found"
64- ls -la "$HOME/VulkanSDK/${VULKAN_SDK_VERSION}/bin/" || echo "bin directory not found"
65- which glslc || echo "glslc not found in PATH"
66- echo "PATH: $PATH"
67- cargo build --workspace --release --verbose
57+ run : cargo build --workspace --release --verbose
You can’t perform that action at this time.
0 commit comments