GH-113464: Run the JIT interpreter before any other JIT CI (GH-119466)

This commit is contained in:
Brandt Bucher 2024-05-23 23:13:41 -04:00 committed by GitHub
parent 0867bce457
commit b48a3dbff4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 0 deletions

View File

@ -26,8 +26,22 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
interpreter:
name: Interpreter (Debug)
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- name: Build tier two interpreter
run: |
./configure --enable-experimental-jit=interpreter --with-pydebug
make all --jobs 4
- name: Test tier two interpreter
run: |
./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
jit: jit:
name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }}) name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
needs: interpreter
runs-on: ${{ matrix.runner }} runs-on: ${{ matrix.runner }}
timeout-minutes: 90 timeout-minutes: 90
strategy: strategy:
@ -153,6 +167,7 @@ jobs:
jit-with-disabled-gil: jit-with-disabled-gil:
name: Free-Threaded (Debug) name: Free-Threaded (Debug)
needs: interpreter
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4