mirror of https://github.com/python/cpython
GH-126464 Fix JIT CI on aarch64-apple-darwin (GH-126494)
This commit is contained in:
parent
a38e82bd8c
commit
09d6f5dc78
|
@ -52,7 +52,7 @@ jobs:
|
||||||
- x86_64-pc-windows-msvc/msvc
|
- x86_64-pc-windows-msvc/msvc
|
||||||
- aarch64-pc-windows-msvc/msvc
|
- aarch64-pc-windows-msvc/msvc
|
||||||
- x86_64-apple-darwin/clang
|
- x86_64-apple-darwin/clang
|
||||||
# - aarch64-apple-darwin/clang
|
- aarch64-apple-darwin/clang
|
||||||
- x86_64-unknown-linux-gnu/gcc
|
- x86_64-unknown-linux-gnu/gcc
|
||||||
- x86_64-unknown-linux-gnu/clang
|
- x86_64-unknown-linux-gnu/clang
|
||||||
- aarch64-unknown-linux-gnu/gcc
|
- aarch64-unknown-linux-gnu/gcc
|
||||||
|
@ -79,11 +79,10 @@ jobs:
|
||||||
architecture: x86_64
|
architecture: x86_64
|
||||||
runner: macos-13
|
runner: macos-13
|
||||||
compiler: clang
|
compiler: clang
|
||||||
# GH-126464: A recent change to either GHA or LLVM broke this job:
|
- target: aarch64-apple-darwin/clang
|
||||||
# - target: aarch64-apple-darwin/clang
|
architecture: aarch64
|
||||||
# architecture: aarch64
|
runner: macos-14
|
||||||
# runner: macos-14
|
compiler: clang
|
||||||
# compiler: clang
|
|
||||||
- target: x86_64-unknown-linux-gnu/gcc
|
- target: x86_64-unknown-linux-gnu/gcc
|
||||||
architecture: x86_64
|
architecture: x86_64
|
||||||
runner: ubuntu-22.04
|
runner: ubuntu-22.04
|
||||||
|
@ -132,7 +131,7 @@ jobs:
|
||||||
brew update
|
brew update
|
||||||
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
|
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
|
||||||
brew install llvm@${{ matrix.llvm }}
|
brew install llvm@${{ matrix.llvm }}
|
||||||
SDKROOT="$(xcrun --show-sdk-path)" \
|
export SDKROOT="$(xcrun --show-sdk-path)"
|
||||||
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
|
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
|
||||||
make all --jobs 4
|
make all --jobs 4
|
||||||
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
|
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
|
||||||
|
|
Loading…
Reference in New Issue