simulators/eels: fix execute-blobs simulator#1365
Open
spencer-tb wants to merge 1 commit intoethereum:masterfrom
Open
simulators/eels: fix execute-blobs simulator#1365spencer-tb wants to merge 1 commit intoethereum:masterfrom
execute-blobs simulator#1365spencer-tb wants to merge 1 commit intoethereum:masterfrom
Conversation
5 tasks
|
Hey @spencer-tb when do you think this will merged. I am having same problem running blob tests with hive. |
danceratopz
reviewed
Jan 19, 2026
Member
danceratopz
left a comment
There was a problem hiding this comment.
I have many issues running execute hive -m blob_transaction_test, but this isn't one of them ;) I don't think they're required any more.
| WORKDIR /execution-specs/packages/testing | ||
| RUN uv sync | ||
| WORKDIR /execution-specs/ | ||
| RUN uv sync --all-extras |
Member
There was a problem hiding this comment.
This is no longer required as of ethereum/execution-specs#1688.
|
|
||
| ## Clone and install EELS | ||
| RUN apt-get update && apt-get install -y git | ||
| RUN apt-get update && apt-get install -y git cmake g++ libclang-dev |
Member
There was a problem hiding this comment.
I can build the simulator without these as of ethereum/execution-specs@eeb65f7.
| git checkout FETCH_HEAD; \ | ||
| fi | ||
|
|
||
| WORKDIR /execution-specs/packages/testing |
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.
Description
The EEST execute command must be ran at the root of the EELS project following the Weld as that is where the
./testsare. This PR contains fixes for the latter.Note
cmake g++ libclang-devare required to runuv sync --all-extras, note we are running this for the entire EELS repo now for execute and not just the EEST package.