mirror of
https://github.com/python/cpython.git
synced 2025-09-29 03:35:31 +00:00
gh-114788: Do not run JIT workflow on unrelated changes (#114789)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
This commit is contained in:
parent
78c254582b
commit
b25b7462d5
1 changed files with 11 additions and 2 deletions
13
.github/workflows/jit.yml
vendored
13
.github/workflows/jit.yml
vendored
|
@ -1,10 +1,19 @@
|
||||||
name: JIT
|
name: JIT
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths: '**jit**'
|
paths:
|
||||||
|
- '**jit**'
|
||||||
|
- 'Python/bytecodes.c'
|
||||||
push:
|
push:
|
||||||
paths: '**jit**'
|
paths:
|
||||||
|
- '**jit**'
|
||||||
|
- 'Python/bytecodes.c'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
jit:
|
jit:
|
||||||
name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
|
name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue