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 dev/tasks/macros.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,10 @@ on:
brew unlink python@2 || true
brew config
brew doctor || true
# The GHA runners install of python > 3.10 is incompatible with brew so we
# have to force overwritting of the symlinks
# see https://github.com/actions/runner-images/issues/6868
brew install --overwrite [email protected] [email protected]

ARROW_GLIB_FORMULA=$(echo ${ARROW_FORMULA} | sed -e 's/\.rb/-glib.rb/')
echo "ARROW_GLIB_FORMULA=${ARROW_GLIB_FORMULA}" >> ${GITHUB_ENV}
Expand Down Expand Up @@ -396,3 +400,4 @@ on:
{{ key }}: "{{ value }}"
{% endfor %}
{% endmacro %}

7 changes: 5 additions & 2 deletions dev/tasks/r/github.macos.brew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,17 @@ jobs:
env:
{{ macros.github_set_sccache_envvars()|indent(8)}}
run: |

brew install sccache
# for testing
brew install minio

# TODO: Update the TODO for ARROW-16907 below to refer to main instead of master
# after migrating the default branch to main.
# TODO(ARROW-16907): apache/arrow@master seems to be installed already
# so this does nothing on a branch/PR
brew install -v --HEAD apache-arrow
# for testing
brew install minio

- uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: |
Expand Down