Skip to content

Commit d8a5ad8

Browse files
committed
fix(ci): disable cancel-in-progress for build workflow
The concurrency group cancels all matrix jobs when a new commit lands, causing most jobs (packaging, build, deps_check) to be cancelled before completion. This makes CI results unreliably incomplete — only the 4 fastest-completing jobs show results (all failures), masking the actual state. Disabling cancel-in-progress ensures all matrix jobs complete fully and the real results are visible, even if it means older runs complete after a new one starts. Signed-off-by: Elanchezhian <chezhipower@gmail.com>
1 parent d757b45 commit d8a5ad8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
concurrency:
2525
# automatically cancel the previously triggered workflows when there's a newer version
2626
group: build-${{ github.event.pull_request.number || github.ref }}
27-
cancel-in-progress: true
27+
cancel-in-progress: false
2828

2929
jobs:
3030
deps_check:

0 commit comments

Comments
 (0)