Skip to content
Closed
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
5 changes: 5 additions & 0 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,11 @@ jobs:
# Remove once the runner ships a newer Homebrew.
brew update
brew bundle --file=cpp/Brewfile
# Workaround for https://github.com/apache/arrow/issues/50688
# Homebrew's aws-sdk-cpp bottle seems to be ABI-incompatible with
# aws-crt-cpp 0.43.0. Rebuild it against the
# installed aws-crt-cpp until the bottle is revision bumped.
brew reinstall --build-from-source aws-sdk-cpp
- name: Install MinIO
run: |
$(brew --prefix bash)/bin/bash \
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ jobs:
# Remove once the runner ships a newer Homebrew.
brew update
brew bundle --file=cpp/Brewfile
# Workaround for https://github.com/apache/arrow/issues/50688
# Homebrew's aws-sdk-cpp bottle seems to be ABI-incompatible with
# aws-crt-cpp 0.43.0. Rebuild it against the
# installed aws-crt-cpp until the bottle is revision bumped.
brew reinstall --build-from-source aws-sdk-cpp
python -m pip install \
-r python/requirements-build.txt \
-r python/requirements-test.txt
Expand Down
Loading