ci: make Nethermind E2E failures actionable - #3
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🧩 What was the bug?
The Nethermind Shasta E2E workflow treated any L2 JSON-RPC response as readiness. In the failed run, block production remained at genesis, so the first transaction timed out and the rest of the suite cascaded into misleading nonce errors. The workflow artifact only contained pytest output, leaving the service-level cause hidden.
Failed run: https://github.com/taikoxyz/Catalyst/actions/runs/33500814591/job/99833478483
🔧 What’s been fixed?
841f041fcfe5248351530cda6874f4fc4bc09fcd.--maxfail=1.actionlintin CI.💬 Anything else reviewers should know?
The devnet sets
PRECONF_MIN_TXS=1, so passive block-number growth is not a valid readiness requirement. The smoke gate deliberately submits transactions through the existing E2E tests.This PR makes the failure precise, bounded, and observable. It does not claim the external block-production stall itself is resolved until the full hosted E2E workflow reruns with the new diagnostics.
✅ Checklist