Skip to content

build: update macos runner to 15 #58078

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ concurrency:

env:
PYTHON_VERSION: '3.12'
XCODE_VERSION: '16.1'
XCODE_VERSION: '16.3'
FLAKY_TESTS: keep_retrying

permissions:
Expand All @@ -41,7 +41,7 @@ jobs:
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
runs-on: macos-14
runs-on: macos-15
env:
CC: sccache gcc
CXX: sccache g++
Expand Down
8 changes: 4 additions & 4 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ platforms. This is true regardless of entries in the table below.
| GNU/Linux | loong64 | kernel >= 5.19, glibc >= 2.36 | Experimental | |
| Windows | x64 | >= Windows 10/Server 2016 | Tier 1 | [^2],[^3] |
| Windows | arm64 | >= Windows 10 | Tier 2 | |
| macOS | x64 | >= 13.5 | Tier 1 | For notes about compilation see [^4] |
| macOS | arm64 | >= 13.5 | Tier 1 | |
| macOS | x64 | >= 15.2 | Tier 1 | For notes about compilation see [^4] |
| macOS | arm64 | >= 15.2 | Tier 1 | |
| SmartOS | x64 | >= 18 | Tier 2 | |
| AIX | ppc64be >=power8 | >= 7.2 TL04 | Tier 2 | |
| FreeBSD | x64 | >= 13.2 | Experimental | |
Expand Down Expand Up @@ -156,7 +156,7 @@ Depending on the host platform, the selection of toolchains may vary.
| ---------------- | -------------------------------------------------------------- |
| Linux | GCC >= 12.2 |
| Windows | Visual Studio >= 2022 with the Windows 10 SDK on a 64-bit host |
| macOS | Xcode >= 16.1 (Apple LLVM >= 17) |
| macOS | Xcode >= 16.3 (Apple LLVM >= 19) |

### Official binary platforms and toolchains

Expand Down Expand Up @@ -248,7 +248,7 @@ FreeBSD and OpenBSD users may also need to install `libexecinfo`.

#### macOS prerequisites

* Xcode Command Line Tools >= 13 for macOS
* Xcode Command Line Tools >= 16.3 for macOS
* [A supported version of Python][Python versions]
* For test coverage, your Python installation must include pip.

Expand Down
1 change: 1 addition & 0 deletions common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,7 @@
'-Wendif-labels',
'-W',
'-Wno-unused-parameter',
'-Wno-cast-function-type-mismatch',
],
},
'target_conditions': [
Expand Down
Loading