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
4 changes: 2 additions & 2 deletions .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ jobs:
run: ci/scripts/csharp_test.sh $(pwd)

macos:
name: AMD64 macOS 13 C# ${{ matrix.dotnet }}
runs-on: macos-13
name: AMD64 macOS 15 C# ${{ matrix.dotnet }}
runs-on: macos-15-intel
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
timeout-minutes: 15
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ jobs:
run: archery docker push ${{ matrix.image }}

macos:
name: AMD64 macOS 13 Java JDK ${{ matrix.jdk }}
runs-on: macos-13
name: AMD64 macOS 15 Java JDK ${{ matrix.jdk }}
runs-on: macos-15-intel
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
timeout-minutes: 30
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:
run: archery docker push debian-js

macos:
name: AMD64 macOS 13 NodeJS ${{ matrix.node }}
runs-on: macos-13
name: AMD64 macOS 15 NodeJS ${{ matrix.node }}
runs-on: macos-15-intel
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
timeout-minutes: 30
strategy:
Expand Down
10 changes: 6 additions & 4 deletions dev/tasks/java-jars/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
fail-fast: false
matrix:
platform:
- { runs_on: ["macos-13"], arch: "x86_64"}
- { runs_on: ["macos-15-intel"], arch: "x86_64"}
env:
MACOSX_DEPLOYMENT_TARGET: "12.0"
steps:
Expand Down Expand Up @@ -154,8 +154,10 @@ jobs:
mkdir -p homebrew-custom/Formula
curl -o homebrew-custom/Formula/cmake.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/f68532bfe5cb87474093df8a839c3818c6aa44dd/Formula/c/cmake.rb
curl -o homebrew-custom/Formula/boost.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/23f9c56c5075dd56b4471e2c93f89f6400b49ddd/Formula/b/boost.rb
brew install -v ./homebrew-custom/Formula/cmake.rb
brew install -v ./homebrew-custom/Formula/boost.rb
brew tap-new local/homebrew-custom
cp ./homebrew-custom/Formula/*.rb "$(brew --repo local/homebrew-custom)/Formula/"
brew install -v local/homebrew-custom/cmake
brew install -v local/homebrew-custom/boost
brew pin cmake
brew pin boost
#
Expand Down Expand Up @@ -188,7 +190,7 @@ jobs:
fail-fast: false
matrix:
platform:
- { runs_on: ["macos-13"], arch: "x86_64"}
- { runs_on: ["macos-15-intel"], arch: "x86_64"}
needs:
- build-cpp-ubuntu
- build-cpp-macos
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 @@ -66,7 +66,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']

Expand Down Expand Up @@ -208,7 +208,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 @@ -389,7 +389,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 @@ -425,7 +425,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 @@ -967,7 +967,7 @@ tasks:
params:
target: {{ target }}
use_conda: True
github_runner: "macos-13"
github_runner: "macos-15-intel"
{% endfor %}

{% for target in ["cpp",
Expand All @@ -982,7 +982,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