55 - ' **jit**'
66 - ' Python/bytecodes.c'
77 - ' Python/optimizer*.c'
8- - ' Python/tier2_redundancy_eliminator_bytecodes .c'
8+ - ' Python/optimizer_bytecodes .c'
99 push :
1010 paths :
1111 - ' **jit**'
1212 - ' Python/bytecodes.c'
1313 - ' Python/optimizer*.c'
14- - ' Python/tier2_redundancy_eliminator_bytecodes .c'
14+ - ' Python/optimizer_bytecodes .c'
1515 workflow_dispatch :
1616
1717concurrency :
2929 target :
3030 - i686-pc-windows-msvc/msvc
3131 - x86_64-pc-windows-msvc/msvc
32+ - aarch64-pc-windows-msvc/msvc
3233 - x86_64-apple-darwin/clang
3334 - aarch64-apple-darwin/clang
3435 - x86_64-unknown-linux-gnu/gcc
4950 architecture : x64
5051 runner : windows-latest
5152 compiler : msvc
53+ - target : aarch64-pc-windows-msvc/msvc
54+ architecture : ARM64
55+ runner : windows-latest
56+ compiler : msvc
5257 - target : x86_64-apple-darwin/clang
5358 architecture : x86_64
5459 runner : macos-13
@@ -70,13 +75,13 @@ jobs:
7075 runner : ubuntu-latest
7176 compiler : gcc
7277 # These fail because of emulation, not because of the JIT:
73- exclude : test_unix_events test_init test_process_pool test_shutdown test_multiprocessing_fork test_cmd_line test_faulthandler test_os test_perf_profiler test_posix test_signal test_socket test_subprocess test_threading test_venv
78+ exclude : test_unix_events test_init test_process_pool test_shutdown test_multiprocessing_fork test_cmd_line test_faulthandler test_os test_perf_profiler test_posix test_signal test_socket test_subprocess test_threading test_venv test_external_inspection
7479 - target : aarch64-unknown-linux-gnu/clang
7580 architecture : aarch64
7681 runner : ubuntu-latest
7782 compiler : clang
7883 # These fail because of emulation, not because of the JIT:
79- exclude : test_unix_events test_init test_process_pool test_shutdown test_multiprocessing_fork test_cmd_line test_faulthandler test_os test_perf_profiler test_posix test_signal test_socket test_subprocess test_threading test_venv
84+ exclude : test_unix_events test_init test_process_pool test_shutdown test_multiprocessing_fork test_cmd_line test_faulthandler test_os test_perf_profiler test_posix test_signal test_socket test_subprocess test_threading test_venv test_external_inspection
8085 env :
8186 CC : ${{ matrix.compiler }}
8287 steps :
@@ -85,14 +90,21 @@ jobs:
8590 with :
8691 python-version : ' 3.11'
8792
88- - name : Windows
89- if : runner.os == 'Windows'
93+ - name : Native Windows
94+ if : runner.os == 'Windows' && matrix.architecture != 'ARM64'
9095 run : |
9196 choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}
9297 ./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '--pgo' }} -p ${{ matrix.architecture }}
9398 ./PCbuild/rt.bat ${{ matrix.debug && '-d' }} -p ${{ matrix.architecture }} -q --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
9499
95- - name : macOS
100+ # No PGO or tests (yet):
101+ - name : Emulated Windows
102+ if : runner.os == 'Windows' && matrix.architecture == 'ARM64'
103+ run : |
104+ choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}
105+ ./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
106+
107+ - name : Native macOS
96108 if : runner.os == 'macOS'
97109 run : |
98110 brew install llvm@${{ matrix.llvm }}
0 commit comments