-
Notifications
You must be signed in to change notification settings - Fork 209
ci(l1): update to new ethereum package version. #3860
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
Changes from all commits
738032f
486b644
8e080ab
f613efa
a76a44e
0239541
24f165d
a925844
bf21efb
b9d9527
7a2dc39
8578642
6754adc
8820c1e
d19acf0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,14 +6,11 @@ participants: | |
| validator_count: 32 | ||
| count: 2 | ||
| - el_type: ethrex | ||
| el_image: ethrex:latest | ||
| cl_type: lighthouse | ||
| cl_image: sigp/lighthouse:v7.1.0 | ||
| validator_count: 32 | ||
|
|
||
| network_params: | ||
| # The address of the staking contract address on the Eth1 chain | ||
| deposit_contract_address: "0x4242424242424242424242424242424242424242" | ||
|
|
||
|
Comment on lines
-13
to
-16
Contributor
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. This is not needed anymore? maybe we can remove it from the other ones?
Collaborator
Author
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. yes its needed, I moved it further down in the same file |
||
| additional_services: | ||
| - assertoor | ||
| - tx_fuzz | ||
|
|
@@ -23,7 +20,8 @@ additional_services: | |
| # Uncomment the previous lines to enable metrics dashboards and dora explorer, useful for local testing | ||
|
|
||
| network_params: | ||
| electra_fork_epoch: 1 | ||
| # The address of the staking contract address on the Eth1 chain | ||
| deposit_contract_address: "0x4242424242424242424242424242424242424242" | ||
|
|
||
| assertoor_params: | ||
| run_stability_check: false | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -124,6 +124,7 @@ jobs: | |
| needs: [docker_build] | ||
| if: ${{ github.event_name != 'merge_group' }} | ||
| strategy: | ||
| fail-fast: true | ||
|
Collaborator
Author
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. this is the default, just making it explicit. Sometimes I want to change it to false when testing stuff |
||
| matrix: | ||
| include: | ||
| - name: Transaction Check | ||
|
|
@@ -154,8 +155,8 @@ jobs: | |
| with: | ||
| enclave_name: ${{ matrix.enclave_name }} | ||
| kurtosis_version: "1.10.2" | ||
| ethereum_package_url: "github.com/lambdaclass/ethereum-package" | ||
| ethereum_package_branch: "7d0d6c6d91f1745a6b396b3965df69d580cf70a9" | ||
| ethereum_package_url: "github.com/ethpandaops/ethereum-package" | ||
| ethereum_package_branch: "82e5a7178138d892c0c31c3839c89d53ffd42d9a" | ||
| ethereum_package_args: ${{ matrix.ethereum_package_args }} | ||
|
|
||
| run-hive: | ||
|
|
@@ -164,6 +165,7 @@ jobs: | |
| needs: [docker_build, setup-hive-fork, setup-hive-upstream] | ||
| if: ${{ github.event_name != 'merge_group' }} | ||
| strategy: | ||
| fail-fast: true | ||
| matrix: | ||
| include: | ||
| - name: "Rpc Compat tests" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -259,7 +259,7 @@ pub fn get_bootnodes(opts: &Options, network: &Network, data_dir: &str) -> Vec<N | |
|
|
||
| match read_node_config_file(config_file) { | ||
| Ok(ref mut config) => bootnodes.append(&mut config.known_peers), | ||
| Err(e) => error!("Could not read from peers file: {e}"), | ||
| Err(e) => warn!("Could not read from peers file: {e}"), | ||
|
Collaborator
Author
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. Theres an issue to fix this properly: #3908 |
||
| }; | ||
|
|
||
| bootnodes | ||
|
|
||
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.
This is now needed because the default is the deployed version: https://github.com/ethpandaops/ethereum-package/blob/82e5a7178138d892c0c31c3839c89d53ffd42d9a/src/package_io/input_parser.star#L17