-
Notifications
You must be signed in to change notification settings - Fork 125
ci(l1): reenable engine-cancun hive simulation
#4876
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
90961d9
ci(l1): add back engine cancun hive simulation
mpaulucci 8dacb4b
Improve check hive results script.
mpaulucci 1e7629c
Make parallelism only 4.
mpaulucci dfb7132
Disable RPC compat.
mpaulucci 93dbe7c
group logs in folder.
mpaulucci ca0c8de
Revert rpc-compat disabling.
mpaulucci b81c0ae
Merge branch 'main' of github.com:lambdaclass/ethrex into reenable-ca…
mpaulucci bb5f236
Remove free disk space.
mpaulucci File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -146,55 +146,35 @@ jobs: | |
| simulation: ethereum/rpc-compat | ||
| # https://github.com/ethereum/execution-apis/pull/627 changed the simulation to use a pre-merge genesis block, so we need to pin to a commit before that | ||
| buildarg: "branch=d08382ae5c808680e976fce4b73f4ba91647199b" | ||
| hive_repository: ethereum/hive | ||
| hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
| artifact_prefix: rpc_compat | ||
| - name: "Devp2p tests" | ||
| simulation: devp2p | ||
| limit: discv4|eth|snap/Ping|Findnode/WithoutEndpointProof|Findnode/PastExpiration|Amplification|Status|StorageRanges|ByteCodes|GetBlockHeaders|SimultaneousRequests|SameRequestID|ZeroRequestID|GetBlockBodies|MaliciousHandshake|MaliciousStatus|NewPooledTxs|GetBlockReceipts|BlockRangeUpdate|GetTrieNodes | ||
| # Findnode/BasicFindnode fails due to packets being processed out of order | ||
| # Findnode/UnsolicitedNeighbors flaky in CI very occasionally. When fixed replace all "Findnode/<test>" with "Findnode" | ||
| hive_repository: ethereum/hive | ||
| hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
| artifact_prefix: devp2p | ||
| - name: "Engine Auth and EC tests" | ||
| simulation: ethereum/engine | ||
| limit: engine-(auth|exchange-capabilities)/ | ||
| hive_repository: ethereum/hive | ||
| hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
| artifact_prefix: engine_auth_ec | ||
| # - name: "Cancun Engine tests" | ||
| # simulation: ethereum/engine | ||
| # limit: "engine-cancun" | ||
| # hive_repository: ethereum/hive | ||
| # hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
| # artifact_prefix: engine_cancun | ||
| - name: "Cancun Engine tests" | ||
| simulation: ethereum/engine | ||
| limit: "engine-cancun" | ||
| artifact_prefix: engine_cancun | ||
| - name: "Paris Engine tests" | ||
| simulation: ethereum/engine | ||
| limit: "engine-api" | ||
| hive_repository: ethereum/hive | ||
| hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
| artifact_prefix: engine_paris | ||
| - name: "Engine withdrawal tests" | ||
| simulation: ethereum/engine | ||
| limit: "engine-withdrawals/Corrupted Block Hash Payload|Empty Withdrawals|engine-withdrawals test loader|GetPayloadBodies|GetPayloadV2 Block Value|Max Initcode Size|Sync after 2 blocks - Withdrawals on Genesis|Withdraw many accounts|Withdraw to a single account|Withdraw to two accounts|Withdraw zero amount|Withdraw many accounts|Withdrawals Fork on Block 1 - 1 Block Re-Org|Withdrawals Fork on Block 1 - 8 Block Re-Org NewPayload|Withdrawals Fork on Block 2|Withdrawals Fork on Block 3|Withdrawals Fork on Block 8 - 10 Block Re-Org NewPayload|Withdrawals Fork on Canonical Block 8 / Side Block 7 - 10 Block Re-Org [^S]|Withdrawals Fork on Canonical Block 8 / Side Block 9 - 10 Block Re-Org [^S]" | ||
| hive_repository: ethereum/hive | ||
| hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
| artifact_prefix: engine_withdrawals | ||
| # Investigate this test | ||
| # - name: "Sync" | ||
| # simulation: ethereum/sync | ||
| # limit: "" | ||
| # hive_repository: ethereum/hive | ||
| # hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
| # artifact_prefix: sync | ||
| steps: | ||
| - name: Free Disk Space (Ubuntu) | ||
| uses: jlumbroso/free-disk-space@v1.3.1 | ||
| with: | ||
| tool-cache: false | ||
| large-packages: false | ||
|
|
||
| - name: Checkout sources | ||
| uses: actions/checkout@v4 | ||
|
|
||
|
|
@@ -225,7 +205,7 @@ jobs: | |
| SIM_LIMIT: ${{ matrix.limit }} | ||
| SIM_BUILDARG: ${{ matrix.buildarg }} | ||
| run: | | ||
| FLAGS='--sim.parallelism 16 --sim.loglevel 1' | ||
| FLAGS='--sim.parallelism 4 --sim.loglevel 3' | ||
mpaulucci marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| if [[ -n "$SIM_LIMIT" ]]; then | ||
| escaped_limit=${SIM_LIMIT//\'/\'\\\'\'} | ||
| FLAGS+=" --sim.limit '$escaped_limit'" | ||
|
|
@@ -239,8 +219,8 @@ jobs: | |
| id: run-hive-action | ||
| uses: ethpandaops/hive-github-action@v0.5.0 | ||
| with: | ||
| hive_repository: ${{ matrix.hive_repository }} | ||
| hive_version: ${{ matrix.hive_version }} | ||
| hive_repository: ethereum/hive | ||
| hive_version: 7709e5892146c793307da072e1593f48039a7e4b | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What version is this? Can we add a comment with the numerical version or at least the date? |
||
| simulator: ${{ matrix.simulation }} | ||
| client: ethrex | ||
| client_config: ${{ steps.client-config.outputs.config }} | ||
|
|
||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
script done by Codex, low risk, no need to review
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The script was changed to basically group the logs for each tests in a separate folder