chore(ci): capture JUnit XML test results for rust-e2e jobs#19548
Merged
theochap merged 1 commit intoaj/chore/migrate-op-reth-makefiles-to-justfrom Mar 17, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## aj/chore/migrate-op-reth-makefiles-to-just #19548 +/- ##
===========================================================================
Coverage 75.4% 75.5%
===========================================================================
Files 675 675
Lines 71571 71571
===========================================================================
+ Hits 54018 54073 +55
+ Misses 17409 17354 -55
Partials 144 144
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
ajsutton
added a commit
that referenced
this pull request
Mar 15, 2026
The large-kona-sequencer devnet config spins up 9 nodes (1 kona sequencer with reth + 4 kona validators with reth + 4 kona validators with geth). On xlarge (8 vCPU, 16GB RAM) the container is consistently killed by the OOM killer before any test step runs, producing failures with no visible failed steps. Split large-kona-sequencer out of the matrix and give it 2xlarge (16 vCPU, 32GB RAM) to accommodate the memory requirements of the full devnet. Fixes flaky failures on #19548 (job 4581496) and #19525 (job 4581006). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 tasks
da20460 to
97808dd
Compare
wwared
approved these changes
Mar 16, 2026
Wrap bare `go test` invocations with `gotestsum --junitfile` in the kona tests justfile and op-reth tests Makefile so that all rust-e2e CI jobs produce JUnit XML. Add `store_test_results` and `store_artifacts` steps to all 4 jobs in rust-e2e.yml so CircleCI Test Insights can surface per-test timing, flake detection, and failure details. The kona-proof-action-tests job already produced JUnit XML via gotestsum but never uploaded it — this change adds the missing CI upload steps. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
97808dd to
5c80591
Compare
theochap
approved these changes
Mar 17, 2026
93b4470
into
aj/chore/migrate-op-reth-makefiles-to-just
128 checks passed
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.
Summary
go testwithgotestsumin rust-e2e test recipes to produce JUnit XML resultsstore_test_resultsandstore_artifactssteps to all 4 rust-e2e CI jobs/ci-flakestracking for rust-e2e testsStacked on #19525 (make-to-just migration for op-reth)
Changes
rust/kona/tests/justfilego testwithgotestsumintest-e2e-sysgo-run(covers 5 job instances)rust/op-reth/tests/justfiletest-e2e-sysgorecipe (1 job).circleci/continue/rust-e2e.ymlstore_test_results+store_artifactsto all 4 jobs.gitignoretmp/output directoriesWhy
The rust-e2e pipeline runs Go E2E tests across 7 job instances but none report results to CircleCI Test Insights. This means no per-test timing, no flake detection, and no test-level failure visibility. The rest of the monorepo already uses
gotestsum --junitfile+store_test_results.Notes
gotestsum = "1.12.3")kona-proof-action-testsalready produced JUnit XML but never uploaded it — now it doesTest plan
rust-e2e-sysgo-testsruns → CircleCI Test Insights shows individual test nameskona-proof-action-testsruns → sharded results appear in Test Insightsrust-restart-sysgo-testsandop-reth-e2e-sysgo-testsresults uploadedCloses #19547
🤖 Generated with Claude Code