Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,6 @@ jobs:
brew uninstall grpc || : # gRPC depends on RE2
brew uninstall grpc@1.54 || : # gRPC 1.54 may be installed too
brew uninstall re2
# We want to use bundled Protobuf for static linking. If
# Homebrew's Protobuf is installed, its library file may be
# used on test We uninstall Homebrew's Protobuf to ensure using
# bundled Protobuf.
brew uninstall protobuf

brew bundle --file=Brewfile
- name: Prepare ccache
Expand Down Expand Up @@ -324,7 +319,8 @@ jobs:
# if: github.event_name == 'schedule'
uses: actions/checkout@v6
with:
repository: apache/arrow
repository: kou/arrow
ref: cpp-bundled-protobuf
path: arrow
- name: Set up Java
uses: actions/setup-java@v5
Expand Down
1 change: 0 additions & 1 deletion gandiva/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ set_property(TARGET arrow_java_jni_gandiva PROPERTY OUTPUT_NAME "gandiva_jni")
target_link_libraries(arrow_java_jni_gandiva
arrow_java_jni_gandiva_headers
jni
protobuf::libprotobuf
Gandiva::gandiva_static)

# Localize thirdparty symbols using a linker version script. This hides them
Expand Down
Loading