https://github.com/python/cpython/commit/c213eb90a0c3c121dc124eae44d1d9507c1e025d
commit: c213eb90a0c3c121dc124eae44d1d9507c1e025d
branch: 3.14
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2025-08-22T17:07:38+03:00
summary:

[3.14] gh-138042: Fix homebrew for tail-calling macOS CI (GH-138043) (#138060)

Co-authored-by: Ken Jin <[email protected]>
Co-authored-by: Hugo van Kemenade <[email protected]>

files:
M .github/workflows/tail-call.yml

diff --git a/.github/workflows/tail-call.yml b/.github/workflows/tail-call.yml
index e32cbf0aaa3c3e..57c92e193a9aec 100644
--- a/.github/workflows/tail-call.yml
+++ b/.github/workflows/tail-call.yml
@@ -114,8 +114,8 @@ jobs:
           find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' 
-delete
           brew install llvm@${{ matrix.llvm }}
           export SDKROOT="$(xcrun --show-sdk-path)"
-          export PATH="/usr/local/opt/llvm/bin:$PATH"
-          export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
+          export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
+          export PATH="/opt/homebrew/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
           CC=clang-20 ./configure --with-tail-call-interp
           make all --jobs 4
           ./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 
--verbose3

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to