Skip to content

Commit 3ed6994

Browse files
committed
Try installing aws-sdk-cpp manually and remove the --jobs 1
1 parent 93dcc0e commit 3ed6994

5 files changed

Lines changed: 14 additions & 9 deletions

File tree

.github/workflows/cpp.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ jobs:
242242
# Workaround for https://github.com/grpc/grpc/issues/41755
243243
# Remove once the runner ships a newer Homebrew.
244244
brew update
245-
brew bundle --file=cpp/Brewfile --jobs 1
245+
brew install aws-sdk-cpp
246+
brew bundle --file=cpp/Brewfile
246247
- name: Install MinIO
247248
run: |
248249
$(brew --prefix bash)/bin/bash \

.github/workflows/cpp_extra.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,8 @@ jobs:
295295
submodules: recursive
296296
- name: Install dependencies
297297
run: |
298-
brew bundle --file=cpp/Brewfile --jobs 1
298+
brew install aws-sdk-cpp
299+
brew bundle --file=cpp/Brewfile
299300
# We want to link aws-sdk-cpp statically but Homebrew's
300301
# aws-sdk-cpp provides only shared library. If we have
301302
# Homebrew's aws-sdk-cpp, our build mix Homebrew's
@@ -471,7 +472,8 @@ jobs:
471472
submodules: recursive
472473
- name: Install Dependencies
473474
run: |
474-
brew bundle --file=cpp/Brewfile --jobs 1
475+
brew install aws-sdk-cpp
476+
brew bundle --file=cpp/Brewfile
475477
476478
# We want to use bundled RE2 for static linking. If
477479
# Homebrew's RE2 is installed, its header file may be used.

.github/workflows/python.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ jobs:
203203
# Workaround for https://github.com/grpc/grpc/issues/41755
204204
# Remove once the runner ships a newer Homebrew.
205205
brew update
206-
brew bundle --file=cpp/Brewfile --jobs 1
206+
brew install aws-sdk-cpp
207+
brew bundle --file=cpp/Brewfile
207208
python -m pip install \
208209
-r python/requirements-build.txt \
209210
-r python/requirements-test.txt

.github/workflows/ruby.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,9 @@ jobs:
163163
# We can remove this once GitHub hosted runners include
164164
# Meson 1.8.4 or later by default.
165165
brew update
166-
brew bundle --file=cpp/Brewfile --jobs 1
167-
brew bundle --file=c_glib/Brewfile --jobs 1
166+
brew install aws-sdk-cpp
167+
brew bundle --file=cpp/Brewfile
168+
brew bundle --file=c_glib/Brewfile
168169
# For Meson.
169170
# See also: https://github.com/mesonbuild/meson/issues/7701
170171
echo "PKG_CONFIG=$(brew --prefix pkgconf)/bin/pkgconf" >> $GITHUB_ENV

dev/tasks/verify-rc/github.macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
# Workaround for https://github.com/grpc/grpc/issues/41755
4646
# Remove once the runner ships a newer Homebrew.
4747
brew update
48-
49-
brew bundle --file=arrow/cpp/Brewfile --jobs 1
50-
brew bundle --file=arrow/c_glib/Brewfile --jobs 1
48+
brew install aws-sdk-cpp
49+
brew bundle --file=arrow/cpp/Brewfile
50+
brew bundle --file=arrow/c_glib/Brewfile
5151
5252
# For Meson.
5353
# See also: https://github.com/mesonbuild/meson/issues/7701

0 commit comments

Comments
 (0)