fix(ci): Coverage job timeout 10->20min (lcov reporter pushed it past the old cap) (#7342)

This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-07-15 21:57:49 -03:00
committed by GitHub
parent d8edefd151
commit 886b906818
2 changed files with 5 additions and 1 deletions

View File

@@ -789,7 +789,10 @@ jobs:
test-coverage:
name: Coverage
runs-on: ubuntu-latest
timeout-minutes: 10
# 10min was sized before #7114 added the lcov reporter (Codecov/Sonar need it);
# merging 8 shard JSONs + text+json+lcov now takes ~10-12min — three consecutive
# release-tip runs died at exactly 10m as job-timeout "cancelled" (2026-07-15/16).
timeout-minutes: 20
needs: test-unit
if: ${{ !cancelled() && needs.test-unit.result == 'success' && !contains(github.event.pull_request.labels.*.name, 'hotfix') }}
env:

View File

@@ -0,0 +1 @@
- **CI**: raise the Coverage job timeout 10→20min — the lcov reporter added for Codecov/Sonar (#7114) pushed the 8-shard report merge past the old cap, and three release-tip runs died at exactly 10min as job-timeout "cancelled"