-
Notifications
You must be signed in to change notification settings - Fork 64
Add ethrex_only localnet #3048
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
Draft
santiago-MV
wants to merge
7
commits into
main
Choose a base branch
from
support-multiple-instance-testnet
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Add ethrex_only localnet #3048
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
33cd336
Add ethrex_only testnet
santiago-MV e9fc30d
Added a github job and some playbooks
santiago-MV 54af705
Change workflow name
santiago-MV d2fd69d
change in file path
santiago-MV 700b29c
Updated workflow to run on all branches
santiago-MV f635425
Changed path
santiago-MV b5cadec
changed path
santiago-MV 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
participants: | ||
- el_type: ethrex | ||
cl_type: lighthouse | ||
cl_image: sigp/lighthouse:v7.0.0-beta.0 | ||
validator_count: 32 | ||
count: 3 | ||
|
||
network_params: | ||
# The address of the staking contract address on the Eth1 chain | ||
deposit_contract_address: "0x4242424242424242424242424242424242424242" | ||
electra_fork_epoch: 0 # This field won't be needed when ethereum-package is merged | ||
|
||
additional_services: | ||
- assertoor | ||
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. I see assertoor but I don't see any assertoor tests. Would be nice to make it explicit which asertoor jobs we're using. |
||
- dora | ||
|
||
assertoor_params: | ||
run_stability_check: false | ||
run_block_proposal_check: false | ||
tests: | ||
- https://raw.githubusercontent.com/ethpandaops/assertoor/refs/heads/master/playbooks/stable/eoa-transactions-test.yaml | ||
- https://raw.githubusercontent.com/ethpandaops/assertoor/refs/heads/master/playbooks/stable/blob-transactions-test.yaml | ||
- https://raw.githubusercontent.com/lambdaclass/ethrex/refs/heads/main/.github/config/assertoor/el-stability-check.yaml |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: run-assertoor-ethrex-only-test | ||
|
||
on: | ||
pull_request: | ||
branches: ["**"] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
assertoor: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Kurtosis Assertoor GitHub Action | ||
uses: ethpandaops/kurtosis-assertoor-github-action@v1 | ||
with: | ||
ethereum_package_args: ./.github/config/assertoor/network_params_ethrex_only.yaml |
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
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.
Nice! Can we add a github job for this?