Skip to content

Commit

Permalink
pythongh-114788: Do not run JIT workflow on unrelated changes (python…
Browse files Browse the repository at this point in the history
…#114789)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
  • Loading branch information
2 people authored and aisk committed Feb 11, 2024
1 parent ca2d5b9 commit 72d4e56
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
name: JIT
on:
pull_request:
paths: '**jit**'
paths:
- '**jit**'
- 'Python/bytecodes.c'
push:
paths: '**jit**'
paths:
- '**jit**'
- 'Python/bytecodes.c'
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
jit:
name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
Expand Down

0 comments on commit 72d4e56

Please sign in to comment.