From fabe22e99fb5232088a921bfdd7f6b759b77692f Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 21 Sep 2025 23:54:58 -0400 Subject: [PATCH] Correct `llvm/lib` path on macOS --- .github/actions/build-dependencies/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index 92bde870..4b64dea9 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -43,8 +43,8 @@ runs: choco install protoc elif [ "$RUNNER_OS" == "macOS" ]; then brew install protobuf llvm - ls /usr/local/opt/llvm/lib | grep "libclang.dylib" # Make sure this installed `libclang` - echo "DYLD_LIBRARY_PATH=/usr/local/opt/llvm/lib:$DYLD_LIBRARY_PATH" >> "$GITHUB_ENV" + ls /opt/homebrew/opt/llvm/lib | grep "libclang.dylib" # Make sure this installed `libclang` + echo "DYLD_LIBRARY_PATH=/opt/homebrew/opt/llvm/lib:$DYLD_LIBRARY_PATH" >> "$GITHUB_ENV" fi - name: Install solc