Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:
# Workaround for https://github.com/grpc/grpc/issues/41755
# Remove once the runner ships a newer Homebrew.
brew update
brew bundle --file=cpp/Brewfile
brew bundle --file=cpp/Brewfile --jobs 1
- name: Install MinIO
run: |
$(brew --prefix bash)/bin/bash \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cpp_extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ jobs:
submodules: recursive
- name: Install dependencies
run: |
brew bundle --file=cpp/Brewfile
brew bundle --file=cpp/Brewfile --jobs 1
# We want to link aws-sdk-cpp statically but Homebrew's
# aws-sdk-cpp provides only shared library. If we have
# Homebrew's aws-sdk-cpp, our build mix Homebrew's
Expand Down Expand Up @@ -471,7 +471,7 @@ jobs:
submodules: recursive
- name: Install Dependencies
run: |
brew bundle --file=cpp/Brewfile
brew bundle --file=cpp/Brewfile --jobs 1

# We want to use bundled RE2 for static linking. If
# Homebrew's RE2 is installed, its header file may be used.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
# Workaround for https://github.com/grpc/grpc/issues/41755
# Remove once the runner ships a newer Homebrew.
brew update
brew bundle --file=cpp/Brewfile
brew bundle --file=cpp/Brewfile --jobs 1
python -m pip install \
-r python/requirements-build.txt \
-r python/requirements-test.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ jobs:
# We can remove this once GitHub hosted runners include
# Meson 1.8.4 or later by default.
brew update
brew bundle --file=cpp/Brewfile
brew bundle --file=c_glib/Brewfile
brew bundle --file=cpp/Brewfile --jobs 1
brew bundle --file=c_glib/Brewfile --jobs 1
# For Meson.
# See also: https://github.com/mesonbuild/meson/issues/7701
echo "PKG_CONFIG=$(brew --prefix pkgconf)/bin/pkgconf" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions c_glib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ required packages.
macOS:

```console
$ brew bundle --file=c_glib/Brewfile
$ brew bundle --file=c_glib/Brewfile --jobs 1
$ meson setup c_glib.build c_glib --buildtype=release
$ meson compile -C c_glib.build
$ sudo meson install -C c_glib.build
Expand Down Expand Up @@ -128,7 +128,7 @@ $ sudo pip3 install meson
On macOS with [Homebrew](https://brew.sh/):

```console
$ brew bundle --file=c_glib/Brewfile
$ brew bundle --file=c_glib/Brewfile --jobs 1
```

You can build and install Arrow GLib by the followings:
Expand Down
4 changes: 2 additions & 2 deletions dev/tasks/verify-rc/github.macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
# Remove once the runner ships a newer Homebrew.
brew update

brew bundle --file=arrow/cpp/Brewfile
brew bundle --file=arrow/c_glib/Brewfile
brew bundle --file=arrow/cpp/Brewfile --jobs 1
brew bundle --file=arrow/c_glib/Brewfile --jobs 1

# For Meson.
# See also: https://github.com/mesonbuild/meson/issues/7701
Expand Down
2 changes: 1 addition & 1 deletion docs/source/developers/cpp/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ On macOS, you can use `Homebrew <https://brew.sh/>`_:

git clone https://github.com/apache/arrow.git
cd arrow
brew update && brew bundle --file=cpp/Brewfile
brew update && brew bundle --file=cpp/Brewfile --jobs 1

With `vcpkg <https://github.com/Microsoft/vcpkg>`_:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/developers/java/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ CMake
.. code-block:: text

$ cd arrow
$ brew bundle --file=cpp/Brewfile
$ brew bundle --file=cpp/Brewfile --jobs 1
# Homebrew Bundle complete! 25 Brewfile dependencies now installed.
$ brew uninstall aws-sdk-cpp
# (We can't use aws-sdk-cpp installed by Homebrew because it has
Expand Down
2 changes: 1 addition & 1 deletion docs/source/developers/python/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Windows tab under the :ref:`pyarrow_build_section` section.

.. code-block::

$ brew update && brew bundle --file=arrow/cpp/Brewfile
$ brew update && brew bundle --file=arrow/cpp/Brewfile --jobs 1

See :ref:`here <cpp-build-dependency-management>` for a list of dependencies you
may need.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/developers/release_verification.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ macOS ARM

# From the arrow clone
brew install gpg
brew bundle --file=cpp/Brewfile
brew bundle --file=c_glib/Brewfile
brew bundle --file=cpp/Brewfile --jobs 1
brew bundle --file=c_glib/Brewfile --jobs 1
brew uninstall node
# You might need to add node, ruby java and maven to the PATH, follow
# instructions from brew after installing.
Expand Down
Loading