gh-137638: Use macos-15-intel in GitHub Actions (#139154)
Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
This commit is contained in:
3
.github/actionlint.yaml
vendored
3
.github/actionlint.yaml
vendored
@@ -1,6 +1,7 @@
|
|||||||
self-hosted-runner:
|
self-hosted-runner:
|
||||||
# Pending https://github.com/rhysd/actionlint/issues/533
|
# Pending https://github.com/rhysd/actionlint/issues/533
|
||||||
labels: ["windows-11-arm"]
|
# and https://github.com/rhysd/actionlint/issues/571
|
||||||
|
labels: ["windows-11-arm", "macos-15-intel"]
|
||||||
|
|
||||||
config-variables: null
|
config-variables: null
|
||||||
|
|
||||||
|
|||||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -202,13 +202,13 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
# Cirrus and macos-14 are M1, macos-13 is default GHA Intel.
|
# Cirrus and macos-14 are M1, macos-15-intel is default GHA Intel.
|
||||||
# macOS 13 only runs tests against the GIL-enabled CPython.
|
# macOS 13 only runs tests against the GIL-enabled CPython.
|
||||||
# Cirrus used for upstream, macos-14 for forks.
|
# Cirrus used for upstream, macos-14 for forks.
|
||||||
os:
|
os:
|
||||||
- ghcr.io/cirruslabs/macos-runner:sonoma
|
- ghcr.io/cirruslabs/macos-runner:sonoma
|
||||||
- macos-14
|
- macos-14
|
||||||
- macos-13
|
- macos-15-intel
|
||||||
is-fork: # only used for the exclusion trick
|
is-fork: # only used for the exclusion trick
|
||||||
- ${{ github.repository_owner != 'python' }}
|
- ${{ github.repository_owner != 'python' }}
|
||||||
free-threading:
|
free-threading:
|
||||||
@@ -219,7 +219,7 @@ jobs:
|
|||||||
is-fork: true
|
is-fork: true
|
||||||
- os: macos-14
|
- os: macos-14
|
||||||
is-fork: false
|
is-fork: false
|
||||||
- os: macos-13
|
- os: macos-15-intel
|
||||||
free-threading: true
|
free-threading: true
|
||||||
uses: ./.github/workflows/reusable-macos.yml
|
uses: ./.github/workflows/reusable-macos.yml
|
||||||
with:
|
with:
|
||||||
|
|||||||
7
.github/workflows/jit.yml
vendored
7
.github/workflows/jit.yml
vendored
@@ -81,7 +81,7 @@ jobs:
|
|||||||
runner: windows-11-arm
|
runner: windows-11-arm
|
||||||
- target: x86_64-apple-darwin/clang
|
- target: x86_64-apple-darwin/clang
|
||||||
architecture: x86_64
|
architecture: x86_64
|
||||||
runner: macos-13
|
runner: macos-15-intel
|
||||||
- target: aarch64-apple-darwin/clang
|
- target: aarch64-apple-darwin/clang
|
||||||
architecture: aarch64
|
architecture: aarch64
|
||||||
runner: macos-14
|
runner: macos-14
|
||||||
@@ -106,15 +106,10 @@ jobs:
|
|||||||
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
|
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
|
||||||
./PCbuild/rt.bat ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
|
./PCbuild/rt.bat ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
|
||||||
|
|
||||||
# The `find` line is required as a result of https://github.com/actions/runner-images/issues/9966.
|
|
||||||
# This is a bug in the macOS runner image where the pre-installed Python is installed in the same
|
|
||||||
# directory as the Homebrew Python, which causes the build to fail for macos-13. This line removes
|
|
||||||
# the symlink to the pre-installed Python so that the Homebrew Python is used instead.
|
|
||||||
- name: macOS
|
- name: macOS
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
|
|
||||||
brew install llvm@${{ matrix.llvm }}
|
brew install llvm@${{ matrix.llvm }}
|
||||||
export SDKROOT="$(xcrun --show-sdk-path)"
|
export SDKROOT="$(xcrun --show-sdk-path)"
|
||||||
# Set MACOSX_DEPLOYMENT_TARGET and -Werror=unguarded-availability to
|
# Set MACOSX_DEPLOYMENT_TARGET and -Werror=unguarded-availability to
|
||||||
|
|||||||
6
.github/workflows/reusable-macos.yml
vendored
6
.github/workflows/reusable-macos.yml
vendored
@@ -60,15 +60,15 @@ jobs:
|
|||||||
--prefix=/opt/python-dev \
|
--prefix=/opt/python-dev \
|
||||||
--with-openssl="$(brew --prefix openssl@3.0)"
|
--with-openssl="$(brew --prefix openssl@3.0)"
|
||||||
- name: Build CPython
|
- name: Build CPython
|
||||||
if : ${{ inputs.free-threading || inputs.os != 'macos-13' }}
|
if : ${{ inputs.free-threading || inputs.os != 'macos-15-intel' }}
|
||||||
run: gmake -j8
|
run: gmake -j8
|
||||||
- name: Build CPython for compiler warning check
|
- name: Build CPython for compiler warning check
|
||||||
if : ${{ !inputs.free-threading && inputs.os == 'macos-13' }}
|
if : ${{ !inputs.free-threading && inputs.os == 'macos-15-intel' }}
|
||||||
run: set -o pipefail; gmake -j8 --output-sync 2>&1 | tee compiler_output_macos.txt
|
run: set -o pipefail; gmake -j8 --output-sync 2>&1 | tee compiler_output_macos.txt
|
||||||
- name: Display build info
|
- name: Display build info
|
||||||
run: make pythoninfo
|
run: make pythoninfo
|
||||||
- name: Check compiler warnings
|
- name: Check compiler warnings
|
||||||
if : ${{ !inputs.free-threading && inputs.os == 'macos-13' }}
|
if : ${{ !inputs.free-threading && inputs.os == 'macos-15-intel' }}
|
||||||
run: >-
|
run: >-
|
||||||
python3 Tools/build/check_warnings.py
|
python3 Tools/build/check_warnings.py
|
||||||
--compiler-output-file-path=compiler_output_macos.txt
|
--compiler-output-file-path=compiler_output_macos.txt
|
||||||
|
|||||||
9
.github/workflows/tail-call.yml
vendored
9
.github/workflows/tail-call.yml
vendored
@@ -58,7 +58,7 @@ jobs:
|
|||||||
# runner: windows-2022
|
# runner: windows-2022
|
||||||
- target: x86_64-apple-darwin/clang
|
- target: x86_64-apple-darwin/clang
|
||||||
architecture: x86_64
|
architecture: x86_64
|
||||||
runner: macos-13
|
runner: macos-15-intel
|
||||||
- target: aarch64-apple-darwin/clang
|
- target: aarch64-apple-darwin/clang
|
||||||
architecture: aarch64
|
architecture: aarch64
|
||||||
runner: macos-14
|
runner: macos-14
|
||||||
@@ -101,17 +101,10 @@ jobs:
|
|||||||
set LLVMInstallDir=C:\Program Files\LLVM
|
set LLVMInstallDir=C:\Program Files\LLVM
|
||||||
./PCbuild/build.bat --tail-call-interp -p ${{ matrix.architecture }}
|
./PCbuild/build.bat --tail-call-interp -p ${{ matrix.architecture }}
|
||||||
|
|
||||||
# The `find` line is required as a result of https://github.com/actions/runner-images/issues/9966.
|
|
||||||
# This is a bug in the macOS runner image where the pre-installed Python is installed in the same
|
|
||||||
# directory as the Homebrew Python, which causes the build to fail for macos-13. This line removes
|
|
||||||
# the symlink to the pre-installed Python so that the Homebrew Python is used instead.
|
|
||||||
# Note: when a new LLVM is released, the homebrew installation directory changes, so the builds will fail.
|
|
||||||
# We either need to upgrade LLVM or change the directory being pointed to.
|
|
||||||
- name: Native macOS (release)
|
- name: Native macOS (release)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
|
|
||||||
brew install llvm@${{ matrix.llvm }}
|
brew install llvm@${{ matrix.llvm }}
|
||||||
export SDKROOT="$(xcrun --show-sdk-path)"
|
export SDKROOT="$(xcrun --show-sdk-path)"
|
||||||
export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
|
export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
|
||||||
|
|||||||
Reference in New Issue
Block a user