ci(guide): widen cd-develop smoke health-check window to ~5 min (#12) #13
Reference in New Issue
Block a user
Delete Branch "chore/cd-develop-smoke-window"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Widens the
cd-developsmoke health-check window from 60 s to ~5 min so a normal Spring Boot restart after deploy isn't marked a failure.Why
Run #6 (PR #11) deployed correctly — guide.bcos.dev served the new content and
/guide/actuator/healthreturned200 UP— but was flagged failure because the smoke step (12 × 5 s) expired before the freshly-restarted backend warmed up. Same false-failure class as #9 (Slack notify), one step earlier.Change
seq 1 12/sleep 5→seq 1 30/sleep 10(30 attempts, ~5 min).Note
This PR touches
.gitea/workflows/cd-develop.yml, which is in the workflow's ownpathstrigger — merging it re-runscd-develop, which serves as a live test of the wider window (expected: green).Closes #12.