From: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Date: Sun, 30 Mar 2025 18:48:00 +0000 (+0200) Subject: gh-131895: fix clang `$PATH` on Darwin runners for tail-calling interpreter (#131903) X-Git-Tag: v3.14.0a7~136 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39fa19a4ccb4c75d2421187e5b8d83c73b48ca4d;p=thirdparty%2FPython%2Fcpython.git gh-131895: fix clang `$PATH` on Darwin runners for tail-calling interpreter (#131903) --- diff --git a/.github/workflows/tail-call.yml b/.github/workflows/tail-call.yml index 3c9098b88ee3..572ff45e51ef 100644 --- a/.github/workflows/tail-call.yml +++ b/.github/workflows/tail-call.yml @@ -112,8 +112,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="/opt/homebrew/opt/llvm/bin:$PATH" - export PATH="/usr/local/opt/llvm/bin:$PATH" + export PATH="/opt/homebrew/opt/llvm@${{ matrix.llvm }}/bin:$PATH" + export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH" CC=clang-19 ./configure --with-tail-call-interp make all --jobs 4 ./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3