Skip to content
Merged
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 @@ -242,6 +242,11 @@ jobs:
# Workaround for https://github.com/grpc/grpc/issues/41755
# Remove once the runner ships a newer Homebrew.
brew update
# Install aws-sdk-cpp manually to avoid issues with the new default
# `brew --jobs auto` causing a lock.
# Remove once the upstream issue is solved:
# https://github.com/Homebrew/brew/issues/22899
brew install aws-sdk-cpp
brew bundle --file=cpp/Brewfile
- name: Install MinIO
run: |
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/cpp_extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,11 @@ jobs:
submodules: recursive
- name: Install dependencies
run: |
# Install aws-sdk-cpp manually to avoid issues with the new default
# `brew --jobs auto` causing a lock.
# Remove once the upstream issue is solved:
# https://github.com/Homebrew/brew/issues/22899
brew install aws-sdk-cpp
brew bundle --file=cpp/Brewfile
# We want to link aws-sdk-cpp statically but Homebrew's
# aws-sdk-cpp provides only shared library. If we have
Expand Down Expand Up @@ -471,6 +476,11 @@ jobs:
submodules: recursive
- name: Install Dependencies
run: |
# Install aws-sdk-cpp manually to avoid issues with the new default
# `brew --jobs auto` causing a lock.
# Remove once the upstream issue is solved:
# https://github.com/Homebrew/brew/issues/22899
brew install aws-sdk-cpp
brew bundle --file=cpp/Brewfile

# We want to use bundled RE2 for static linking. If
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ jobs:
# Workaround for https://github.com/grpc/grpc/issues/41755
# Remove once the runner ships a newer Homebrew.
brew update
# Install aws-sdk-cpp manually to avoid issues with the new default
# `brew --jobs auto` causing a lock.
# Remove once the upstream issue is solved:
# https://github.com/Homebrew/brew/issues/22899
brew install aws-sdk-cpp
brew bundle --file=cpp/Brewfile
Comment thread
raulcd marked this conversation as resolved.
python -m pip install \
-r python/requirements-build.txt \
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ jobs:
# We can remove this once GitHub hosted runners include
# Meson 1.8.4 or later by default.
brew update
# Install aws-sdk-cpp manually to avoid issues with the new default
# `brew --jobs auto` causing a lock.
# Remove once the upstream issue is solved:
# https://github.com/Homebrew/brew/issues/22899
brew install aws-sdk-cpp
brew bundle --file=cpp/Brewfile
brew bundle --file=c_glib/Brewfile
# For Meson.
Expand Down
6 changes: 5 additions & 1 deletion dev/tasks/verify-rc/github.macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ jobs:
# Workaround for https://github.com/grpc/grpc/issues/41755
# Remove once the runner ships a newer Homebrew.
brew update

# Install aws-sdk-cpp manually to avoid issues with the new default
# `brew --jobs auto` causing a lock.
# Remove once the upstream issue is solved:
# https://github.com/Homebrew/brew/issues/22899
brew install aws-sdk-cpp
brew bundle --file=arrow/cpp/Brewfile
brew bundle --file=arrow/c_glib/Brewfile

Expand Down
Loading