chore(codecov): Ignore errors during codecov upload#846
Conversation
📝 WalkthroughSummary by CodeRabbit
WalkthroughThe pull request modifies the GitHub Actions workflow by updating the "Upload test results to Codecov" step. A new line, Changes
Sequence Diagram(s)sequenceDiagram
participant Runner as Workflow Runner
participant Codecov as Codecov Upload Step
participant Next as Subsequent Steps
Runner->>Codecov: Execute Codecov upload step
Note right of Codecov: Known bug may cause failure
Codecov-->>Runner: Return error (ignored due to continue-on-error)
Runner->>Next: Proceed with subsequent steps
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (1)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
| # There is a bug in action which provokes it to fail during upload | ||
| # Related issue: https://github.com/codecov/codecov-action/issues/1794 | ||
| continue-on-error: true |
There was a problem hiding this comment.
IMHO it may make sense to add FIXME remark and current date to the comment to keep track of this quirk which we probably want to revert later 🤔
| # There is a bug in action which provokes it to fail during upload | |
| # Related issue: https://github.com/codecov/codecov-action/issues/1794 | |
| continue-on-error: true | |
| # There is a bug in action which provokes it to fail during upload | |
| # Related issue: https://github.com/codecov/codecov-action/issues/1794 | |
| # FIXME: set to `false' once linked issue is resolved (20250321) | |
| continue-on-error: true |
There was a problem hiding this comment.
You can get date from git metadata
There was a problem hiding this comment.
And browse git log to get when the comment first appeared if it's updated multiple times... I prefer a more human-friendly inline comment.
Up to you though.
|
This PR is included in version 1.98.0 🎉 |
Workaround for codecov/codecov-action#1794
Close #843