From 7e5d55ec2c113c678c61a8c3b06da97e894f3f93 Mon Sep 17 00:00:00 2001 From: Matthew Rodusek <7519129+bitwizeshift@users.noreply.github.com> Date: Sun, 10 Dec 2023 20:02:45 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A6=20Update=20DYLD=20path=20for=20mac?= =?UTF-8?q?os=20Vulkan?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Builds are failing for macOS due to not finding `-lvulkan`; this updates the `DYLD_LIBRARY_PATH` to include the `$VULKAN_SDK/lib` path, as required by the vulkan installations. --- .github/actions/prepare-runner/action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/prepare-runner/action.yaml b/.github/actions/prepare-runner/action.yaml index a79e8d1..e1c85ca 100644 --- a/.github/actions/prepare-runner/action.yaml +++ b/.github/actions/prepare-runner/action.yaml @@ -90,6 +90,7 @@ runs: run: | brew update brew install molten-vk + echo DYLD_LIBRARY_PATH="${VULKAN_SDK}/lib:${DYLD_LIBRARY_PATH}" > "${GITHUB_ENV}" - name: Checkout 3rd-party uses: ./.github/actions/checkout