[3.13] gh-145098: Run Apple Silicon macOS CI on macos-26 (Tahoe) (GH-145099) (GH-146412)#146414
[3.13] gh-145098: Run Apple Silicon macOS CI on macos-26 (Tahoe) (GH-145099) (GH-146412)#146414hugovk merged 3 commits intopython:3.13from
Conversation
pythonGH-145099) (pythonGH-146412) (cherry picked from commit ce78904) Co-authored-by: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Co-authored-by: clintonsteiner <47841949+clintonsteiner@users.noreply.github.com>
… (Tahoe) (pythonGH-145099) (pythonGH-146412) (cherry picked from commit ce78904)
|
Some JIT failures here, does it need some updates to work with macOS 26? |
|
JIT build error: This error looks like #126464 which was solved by #126494. It seems like |
|
@hugovk: Can you try this change on your PR? diff --git a/.github/workflows/jit.yml b/.github/workflows/jit.yml
index fc019fb0d32..ffd49ca2834 100644
--- a/.github/workflows/jit.yml
+++ b/.github/workflows/jit.yml
@@ -133,8 +133,8 @@ jobs:
run: |
brew update
brew install llvm@${{ matrix.llvm }}
- SDKROOT="$(xcrun --show-sdk-path)" \
- ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
+ export SDKROOT="$(xcrun --show-sdk-path)"
+ ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
make all --jobs 4
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
|
|
JIT macOS tests are now passing. JIT aarch64-unknown-linux are consistently failing, but unrelated to these changes they are also on https://github.com/python/cpython/actions/runs/22593670441 And CIFuzz consistently failing, but also unrelated to these changes. |
|
Thanks @hugovk for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
|
Sorry, @hugovk, I could not cleanly backport this to |
|
GH-146635 is a backport of this pull request to the 3.12 branch. |
pythonGH-145099) (pythonGH-146412) (pythonGH-146414) (cherry picked from commit 0dcb625) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Co-authored-by: clintonsteiner <47841949+clintonsteiner@users.noreply.github.com>
(cherry picked from commit ce78904)