The Code Coverage job is failing on runner9 with System.IO.IOException: No space left on device (seen on main HEAD fd18d56 and PR #571, 2026-07-02). Today it only reddens the advisory codecov job, but the same runner serves required jobs — this becomes a hard CI outage when a required job lands on it.
Known recurring culprits on runner disks (from prior local episodes): target/debug/incremental ballooning to ~35 GB, stale .claude/worktrees agent dirs, old cargo caches. Suggested remediation on runner9 (whoever owns the box):
cargo sweep / delete */target/debug/incremental older than a few days
- prune stale worktrees +
docker system prune if applicable
- consider a scheduled cleanup step (pre-job
df guard + cache eviction) in the runner's maintenance, so this stops recurring
Filed by the release-gate loop; not blocking current merges (codecov is advisory) but tracked so it's fixed before it blocks a real gate.
The Code Coverage job is failing on runner9 with
System.IO.IOException: No space left on device(seen on main HEADfd18d56and PR #571, 2026-07-02). Today it only reddens the advisory codecov job, but the same runner serves required jobs — this becomes a hard CI outage when a required job lands on it.Known recurring culprits on runner disks (from prior local episodes):
target/debug/incrementalballooning to ~35 GB, stale.claude/worktreesagent dirs, old cargo caches. Suggested remediation on runner9 (whoever owns the box):cargo sweep/ delete*/target/debug/incrementalolder than a few daysdocker system pruneif applicabledfguard + cache eviction) in the runner's maintenance, so this stops recurringFiled by the release-gate loop; not blocking current merges (codecov is advisory) but tracked so it's fixed before it blocks a real gate.