fix(ci): raise dast-smoke timeout 12->25min (build alone eats up to 11min) (#7139)

This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-07-14 16:24:15 -03:00
committed by GitHub
parent c97d2a6ae2
commit 9e8aeab7c6
2 changed files with 5 additions and 1 deletions

View File

@@ -10,7 +10,10 @@ jobs:
# ADVISORY while this new gate matures (repo convention: advisory -> blocking).
# Flip to blocking (remove continue-on-error) once it's proven stable across a few PRs.
continue-on-error: true
timeout-minutes: 12
# Build CLI bundle alone varies 6-11min on GitHub-hosted runners (3 consecutive
# timeouts observed on 2026-07-14 with the old 12min cap killing schemathesis
# mid-run) — 25min leaves real headroom for the actual DAST steps.
timeout-minutes: 25
env:
JWT_SECRET: ci-build-secret-with-sufficient-length-for-validation
API_KEY_SECRET: ci-api-key-secret-with-sufficient-length-aaaa

View File

@@ -0,0 +1 @@
- **CI**: raise the dast-smoke job timeout 12→25min — the CLI bundle build alone varies 6-11min on GitHub-hosted runners, so the old cap killed Schemathesis mid-run (3 consecutive false-negative timeouts on 2026-07-14)