-
Notifications
You must be signed in to change notification settings - Fork 30
ci: soft-fail coverage-gate while artifact quota persists #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -211,9 +211,17 @@ jobs: | |
| name: coverage >= 90% | ||
| needs: [rust-unit, e2e] | ||
| runs-on: ubuntu-latest | ||
| # The threshold check itself is already a soft gate (the bash logic | ||
| # exits 0 even when below threshold; see comment on the merge step). | ||
| # Aligning the job-level setting with that intent: don't fail the | ||
| # workflow when coverage-gate fails — especially while the artifact | ||
| # storage quota outage prevents the upstream coverage-unit upload. | ||
| # Revert when the gate is flipped from advisory to gating (PR #5). | ||
| continue-on-error: true | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/download-artifact@v4 | ||
| continue-on-error: true | ||
| with: { name: coverage-unit, path: cov/unit } | ||
|
Comment on lines
223
to
225
|
||
| - uses: actions/download-artifact@v4 | ||
| continue-on-error: true | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new comment says to “Revert when the gate is flipped … (PR #5)”, but PR #5 (per this PR’s metadata) is about server startup/health listeners and doesn’t appear related to coverage gating. Consider removing the PR reference or linking to the correct tracking issue/PR so future readers know when to revert.