Skip to content

Commit 4b4d928

Browse files
authored
MINOR: Don't uninstall Flatbuffers in CI (#711)
## What's Changed There is no more need after apache/arrow@32641ec Also, disable building tests to avoid issues with Boost/Homebrew. They aren't executed anyways.
1 parent 74e8981 commit 4b4d928

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.github/workflows/rc.yml

-5
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,6 @@ jobs:
261261
# bundled Protobuf.
262262
brew uninstall protobuf
263263
264-
# We need Flatbuffers 24, not the latest version
265-
# Homebrew does not offer older versions, so remove the Homebrew
266-
# package and rely on Arrow using a bundled version instead
267-
brew uninstall flatbuffers
268-
269264
brew bundle --file=Brewfile
270265
- name: Prepare ccache
271266
run: |

ci/scripts/jni_macos_build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ github_actions_group_begin "Building Arrow C++ libraries"
6161
install_dir="${build_dir}/cpp-install"
6262
: "${ARROW_ACERO:=ON}"
6363
export ARROW_ACERO
64-
: "${ARROW_BUILD_TESTS:=ON}"
64+
: "${ARROW_BUILD_TESTS:=OFF}"
6565
export ARROW_BUILD_TESTS
6666
: "${ARROW_DATASET:=ON}"
6767
export ARROW_DATASET

ci/scripts/jni_manylinux_build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ devtoolset_version="$(rpm -qa "devtoolset-*-gcc" --queryformat '%{VERSION}' | gr
5757
devtoolset_include_cpp="/opt/rh/devtoolset-${devtoolset_version}/root/usr/include/c++/${devtoolset_version}"
5858
: "${ARROW_ACERO:=ON}"
5959
export ARROW_ACERO
60-
: "${ARROW_BUILD_TESTS:=ON}"
60+
: "${ARROW_BUILD_TESTS:=OFF}"
6161
export ARROW_BUILD_TESTS
6262
: "${ARROW_DATASET:=ON}"
6363
export ARROW_DATASET

0 commit comments

Comments
 (0)