Skip to content

Commit 5f0dfd7

Browse files
brandtbucheraisk
authored andcommitted
pythonGH-113464: Add aarch64-apple-darwin/clang to JIT CI (pythonGH-114759)
1 parent 0a7b75d commit 5f0dfd7

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/jit.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- i686-pc-windows-msvc/msvc
1717
- x86_64-pc-windows-msvc/msvc
1818
- x86_64-apple-darwin/clang
19+
- aarch64-apple-darwin/clang
1920
- x86_64-unknown-linux-gnu/gcc
2021
- x86_64-unknown-linux-gnu/clang
2122
- aarch64-unknown-linux-gnu/gcc
@@ -36,9 +37,12 @@ jobs:
3637
compiler: msvc
3738
- target: x86_64-apple-darwin/clang
3839
architecture: x86_64
39-
runner: macos-latest
40+
runner: macos-13
41+
compiler: clang
42+
- target: aarch64-apple-darwin/clang
43+
architecture: aarch64
44+
runner: macos-14
4045
compiler: clang
41-
exclude: test_embed
4246
- target: x86_64-unknown-linux-gnu/gcc
4347
architecture: x86_64
4448
runner: ubuntu-latest
@@ -80,7 +84,7 @@ jobs:
8084
brew install llvm@${{ matrix.llvm }}
8185
export SDKROOT="$(xcrun --show-sdk-path)"
8286
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
83-
make all --jobs 3
87+
make all --jobs 4
8488
./python.exe -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
8589
8690
- name: Native Linux
@@ -91,6 +95,7 @@ jobs:
9195
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
9296
make all --jobs 4
9397
./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
98+
9499
- name: Emulated Linux
95100
if: runner.os == 'Linux' && matrix.architecture != 'x86_64'
96101
run: |

0 commit comments

Comments
 (0)