kou commented on PR #35967: URL: https://github.com/apache/arrow/pull/35967#issuecomment-1585143231
FYI: We can do it in `dev/tasks/verify-rc/`: ```diff diff --git a/dev/tasks/verify-rc/github.macos.amd64.yml b/dev/tasks/verify-rc/github.macos.amd64.yml index 506975e19..0b3b1b05b 100644 --- a/dev/tasks/verify-rc/github.macos.amd64.yml +++ b/dev/tasks/verify-rc/github.macos.amd64.yml @@ -51,6 +51,7 @@ jobs: brew install --overwrite git brew bundle --file=arrow/cpp/Brewfile brew bundle --file=arrow/c_glib/Brewfile + brew uninstall protobuf abseil grpc {% endif %} - uses: actions/setup-java@v2 @@ -69,6 +70,7 @@ jobs: - name: Run verification shell: bash env: + ARROW_CMAKE_OPTIONS: -DProtobuf_SOURCE=BUNDLED TEST_DEFAULT: 0 TEST_{{ target|upper }}: 1 {% if use_conda %} diff --git a/dev/tasks/verify-rc/github.macos.arm64.yml b/dev/tasks/verify-rc/github.macos.arm64.yml index 75a061c4d..d4c2f96be 100644 --- a/dev/tasks/verify-rc/github.macos.arm64.yml +++ b/dev/tasks/verify-rc/github.macos.arm64.yml @@ -40,11 +40,13 @@ jobs: - name: Run verification shell: bash env: + ARROW_CMAKE_OPTIONS: -DProtobuf_SOURCE=BUNDLED TEST_DEFAULT: 0 TEST_{{ target|upper }}: 1 run: | brew bundle --file=arrow/cpp/Brewfile brew bundle --file=arrow/c_glib/Brewfile + brew uninstall protobuf abseil grpc export PATH="$(brew --prefix node@16)/bin:$PATH" export PATH="$(brew --prefix ruby)/bin:$PATH" export PKG_CONFIG_PATH="$(brew --prefix ruby)/lib/pkgconfig" ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org