kou commented on code in PR #49491:
URL: https://github.com/apache/arrow/pull/49491#discussion_r2915266041
##########
.github/workflows/ruby.yml:
##########
@@ -162,6 +162,12 @@ jobs:
brew update
brew bundle --file=cpp/Brewfile
brew bundle --file=c_glib/Brewfile
+
+ # protobuf@33 is keg-only, so make it visible to CMake and
pkg-config.
+ export PROTOBUF_PREFIX="$(brew --prefix protobuf@33)"
+ echo
"PKG_CONFIG_PATH=${PROTOBUF_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" >>
"$GITHUB_ENV"
+ echo
"CMAKE_PREFIX_PATH=${PROTOBUF_PREFIX}:${ARROW_HOME}:${CMAKE_PREFIX_PATH}" >>
"$GITHUB_ENV"
+ echo "${PROTOBUF_PREFIX}/bin" >> "$GITHUB_PATH"
Review Comment:
```suggestion
echo "${PROTOBUF_PREFIX}/bin" >> "$GITHUB_PATH"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]