Skip to content

Commit 399b7e8

Browse files
Remove defaults and add condition for tail call
1 parent 264adc1 commit 399b7e8

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/jit.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,17 +124,14 @@ jobs:
124124
include:
125125
- name: Free-Threaded (Debug)
126126
configure_flags: --enable-experimental-jit --with-pydebug --disable-gil
127-
test_env: ""
128127
continue_on_error: true
129128
- name: JIT without optimizations (Debug)
130129
configure_flags: --enable-experimental-jit --with-pydebug
131130
test_env: "PYTHON_UOPS_OPTIMIZE=0"
132-
continue_on_error: false
133131
- name: JIT with tail calling interpreter
134132
configure_flags: --enable-experimental-jit --with-tail-call-interp --with-pydebug
135133
use_clang: true
136-
test_env: ""
137-
continue_on_error: false
134+
run_tests: false
138135
steps:
139136
- uses: actions/checkout@v6
140137
with:
@@ -152,6 +149,7 @@ jobs:
152149
./configure ${{ matrix.configure_flags }}
153150
make all --jobs 4
154151
- name: Run tests
152+
if: matrix.run_tests != false
155153
run: |
156154
${{ matrix.test_env }} ./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
157155
continue-on-error: ${{ matrix.continue_on_error }}

0 commit comments

Comments
 (0)