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
4 changes: 2 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
matrix:
include:
- architecture: AMD64
macos-version: "13"
macos-version: "15-intel"
- architecture: ARM64
macos-version: "14"
env:
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
restore-keys: cpp-ccache-macos-${{ matrix.macos-version }}-
- name: Build
run: |
if [ "${{ matrix.macos-version }}" = "13" ]; then
if [ "${{ matrix.macos-version }}" = "15-intel" ]; then
# This is a workaround.
#
# Homebrew uses /usr/local as prefix. So packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
matrix:
include:
- architecture: AMD64
macos-version: "13"
macos-version: "15-intel"
- architecture: ARM64
macos-version: "14"
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
matrix:
include:
- architecture: AMD64
macos-version: "13"
macos-version: "15-intel"
- architecture: ARM64
macos-version: "14"
env:
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
- name: Build
shell: bash
run: |
if [ "${{ matrix.macos-version }}" = "13" ]; then
if [ "${{ matrix.macos-version }}" = "15-intel" ]; then
# This is a workaround.
#
# Homebrew uses /usr/local as prefix. So packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
fail-fast: false
matrix:
runs-on:
- macos-13
- macos-15-intel
- macos-14
env:
RC: ${{ needs.target.outputs.rc }}
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/matlab/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
matrix:
platform:
- { architecture: "AMD64", macos-version: "13", architecture-suffix: "x64"}
- { architecture: "AMD64", macos-version: "15-intel", architecture-suffix: "x64"}
- { architecture: "ARM64", macos-version: "14", architecture-suffix: "arm64"}
steps:
{{ macros.github_checkout_arrow()|indent }}
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/python-wheels/github.osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Install System Dependencies
run: |
brew install bash bison coreutils ninja
brew install bash bison coreutils mono ninja
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH

- name: Homebrew packages
Expand Down
6 changes: 3 additions & 3 deletions dev/tasks/r/github.packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
fail-fast: false
matrix:
platform:
- { runs_on: macos-13, arch: "x86_64" }
- { runs_on: macos-15-intel, arch: "x86_64" }
- { runs_on: macos-14, arch: "arm64" }
openssl: ['3.0', '1.1']
env:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
matrix:
platform:
- { runs_on: 'windows-latest', name: "Windows"}
- { runs_on: macos-13, name: "macOS x86_64"}
- { runs_on: macos-15-intel, name: "macOS x86_64"}
- { runs_on: macos-14, name: "macOS arm64" }
r_version: [oldrel, release]
steps:
Expand Down Expand Up @@ -396,7 +396,7 @@ jobs:
matrix:
platform:
- {runs_on: "ubuntu-latest", name: "Linux"}
- {runs_on: "macos-13" , name: "macOS"}
- {runs_on: "macos-15-intel" , name: "macOS"}
steps:
- name: Install R
uses: r-lib/actions/setup-r@v2
Expand Down
6 changes: 3 additions & 3 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ tasks:
python_version: "{{ python_version }}"
python_abi_tag: "{{ abi_tag }}"
macos_deployment_target: "12.0"
runs_on: "macos-13"
runs_on: "macos-15-intel"
vcpkg_arch: "amd64"
artifacts:
- pyarrow-{no_rc_version}-{{ python_tag }}-{{ abi_tag }}-macosx_12_0_x86_64.whl
Expand Down Expand Up @@ -346,7 +346,7 @@ tasks:
params:
target: {{ target }}
use_conda: True
github_runner: "macos-13"
github_runner: "macos-15-intel"
{% endfor %}

{% for target in ["cpp",
Expand All @@ -358,7 +358,7 @@ tasks:
template: verify-rc/github.macos.yml
params:
target: {{ target }}
github_runner: "macos-13"
github_runner: "macos-15-intel"
{% endfor %}

{% for target in ["cpp",
Expand Down
Loading