From 9fa7a08c1af37d35d7b6b350763b46111e730a36 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 21 Sep 2025 23:17:11 -0400 Subject: [PATCH] Add `/usr/local/opt/llvm/lib` to paths on macOS hosts --- .github/actions/build-dependencies/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index 3b61c91f..eb508ac3 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -41,6 +41,8 @@ runs: sudo apt install -y ca-certificates protobuf-compiler libclang-dev elif [ "$RUNNER_OS" == "Windows" ]; then choco install protoc llvm + echo "LIBCLANG_PATH=/usr/local/opt/llvm/lib" >> $GITHUB_ENV + echo "DYLD_LIBRARY_PATH=/usr/local/opt/llvm/lib:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV elif [ "$RUNNER_OS" == "macOS" ]; then brew install protobuf llvm fi