ci: disable free-disk-space for up-features job - #1092
Conversation
The background free-disk-space step prunes unused Docker images concurrently with later steps. In the up-features job this raced with the e2e test's own devcontainer build: the image was built and verified present, then pruned before the container could start, failing with "image not found". https://github.com/devsy-org/devsy/actions/runs/32018882285/job/95361185253
✅ Deploy Preview for images-devsy-sh canceled.
|
|
Warning Review limit reached
Next review available in: 6 minutes Limit details: You’ve used all 1 included review currently available under your plan. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Problem
Test up-features on ubuntu-latestfailed with:https://github.com/devsy-org/devsy/actions/runs/32018882285/job/95361185253
Root cause
The full job log (fetched via
gh api .../actions/jobs/95361185253/logs) shows the build succeeding and the image being verified present, then ~14–25s later, while thejlumbroso/free-disk-spacestep (running withbackground: true) was still pruning Docker images concurrently:The freshly built, not-yet-referenced-by-a-container image got swept up by the background disk-cleanup's
docker image prunebefore the container could start. This is a CI workflow race, not an application bug.Fix
Set
free-disk-space: falsefor theup-features(ubuntu-latest) matrix entry so the background image-prune step no longer runs for this job. This job doesn't need the extra disk headroom badly enough to risk racing its own devcontainer builds.Other
free-disk-space: truematrix entries (provider,up-workspaces,up-handle-errors,up-provider-kubernetes) are unchanged.