File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 4141 - aarch64-apple-darwin/clang
4242 - x86_64-unknown-linux-gnu/gcc
4343 - aarch64-unknown-linux-gnu/gcc
44+ - free-threading
4445 llvm :
4546 - 19
4647 include :
6566 - target : aarch64-unknown-linux-gnu/gcc
6667 architecture : aarch64
6768 runner : ubuntu-22.04-arm
69+ - target : free-threading
70+ architecture : x86_64
71+ runner : ubuntu-24.04
6872 steps :
6973 - uses : actions/checkout@v4
7074 with :
@@ -105,11 +109,20 @@ jobs:
105109 ./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
106110
107111 - name : Native Linux (release)
108- if : runner.os == 'Linux'
112+ if : runner.os == 'Linux' && matrix.target != 'free-threading'
109113 run : |
110114 sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
111115 export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
112116 CC=clang-19 ./configure --with-tail-call-interp
113117 make all --jobs 4
114118 ./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
115119
120+ - name : Native Linux with free-threading (release)
121+ if : matrix.target == 'free-threading'
122+ run : |
123+ sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
124+ export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
125+ CC=clang-19 ./configure --with-tail-call-interp --disable-gil
126+ make all --jobs 4
127+ ./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
128+
You can’t perform that action at this time.
0 commit comments