Correct llvm/lib path on macOS

This commit is contained in:
Luke Parker
2025-09-21 23:54:58 -04:00
parent feb6166190
commit fabe22e99f

View File

@@ -43,8 +43,8 @@ runs:
choco install protoc choco install protoc
elif [ "$RUNNER_OS" == "macOS" ]; then elif [ "$RUNNER_OS" == "macOS" ]; then
brew install protobuf llvm brew install protobuf llvm
ls /usr/local/opt/llvm/lib | grep "libclang.dylib" # Make sure this installed `libclang` ls /opt/homebrew/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" echo "DYLD_LIBRARY_PATH=/opt/homebrew/opt/llvm/lib:$DYLD_LIBRARY_PATH" >> "$GITHUB_ENV"
fi fi
- name: Install solc - name: Install solc