feat(runloop): vendor the eest-runner harness as monad-runloop - #57
Open
pdobacz wants to merge 3 commits into
Open
feat(runloop): vendor the eest-runner harness as monad-runloop#57pdobacz wants to merge 3 commits into
pdobacz wants to merge 3 commits into
Conversation
The monad stack comes in as one submodule pinned at upstream monad-bft master, whose monad-execution pin carries the EEST entry points. Co-Authored-By: Claude <claude-opus-5>
init-stack.sh skips three of monad's 23 third_party submodules that no CMakeLists in the default build reads, taking the stack from ~3.6 GB to ~300 MB. A guard fails the checkout if a skipped path becomes referenced. Co-Authored-By: Claude <claude-opus-5>
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
git submodule update returns a submodule to the recorded gitlink, so calling init-stack.sh after an override reverted it and the run tested the pinned stack. --keep names the level already checked out. Co-Authored-By: Claude <claude-opus-5>
Collaborator
Author
|
Verified to consume tests correctly in https://github.com/monad-developers/execution-specs/actions/runs/33860795778 |
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.
Sunsets the monad-eest-rust-harness repo. Everything in the diff under
monad-runloopis that repo's code, slightly adjustedGreptile Summary
The PR vendors the runloop harness into this repository and updates the release-consumption workflow to build against the vendored stack.
monad-runloop/.Confidence Score: 5/5
The PR appears safe to merge.
No blocking failure remains.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD Checkout[Checkout execution-specs] --> Init[Initialize pinned monad-bft and monad-execution] Init --> BftChoice{monad-bft override?} BftChoice -->|Yes| BftOverride[Checkout requested monad-bft] BftOverride --> KeepBft[Initialize with --keep bft] BftChoice -->|No| ExecChoice{monad-execution override?} KeepBft --> ExecChoice ExecChoice -->|Yes| ExecOverride[Checkout requested monad-execution] ExecOverride --> KeepExec[Initialize with --keep exec] ExecChoice -->|No| Build[Build vendored runloop] KeepExec --> Build Build --> Consume[Consume fixture release]Reviews (2): Last reviewed commit: "fix(ci): keep stack overrides from being..." | Re-trigger Greptile