Skip to content

Commit

Permalink
feat: add ethereumjs to nightly runners (#154)
Browse files Browse the repository at this point in the history
Changelog picked up from commits here:

feat: add ethereumjs to nightly runners
  • Loading branch information
barnabasbusa authored Aug 28, 2023
1 parent 68572cd commit b86d886
Show file tree
Hide file tree
Showing 9 changed files with 81 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ jobs:
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/erigon-all.json)"

ethereumjs-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout

- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/ethereumjs-all.json)"

full-interop:
executor: ubuntu_vm
resource_class: xlarge
Expand Down
28 changes: 28 additions & 0 deletions .circleci/tests/ethereumjs-all.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"participants": [
{
"el_client_type": "ethereumjs",
"cl_client_type": "teku"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "prysm"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "nimbus"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "lighthouse"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "lodestar"
}
],
"network_params": {
"capella_fork_epoch": 1
},
"launch_additional_services": false
}
20 changes: 20 additions & 0 deletions .circleci/tests/full-interop.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,26 @@
{
"el_client_type":"besu",
"cl_client_type":"prysm"
},
{
"el_client_type":"ethereumjs",
"cl_client_type":"lighthouse"
},
{
"el_client_type":"ethereumjs",
"cl_client_type":"nimbus"
},
{
"el_client_type":"ethereumjs",
"cl_client_type":"lodestar"
},
{
"el_client_type":"ethereumjs",
"cl_client_type":"teku"
},
{
"el_client_type":"ethereumjs",
"cl_client_type":"prysm"
}
],
"network_params":{
Expand Down
4 changes: 4 additions & 0 deletions .circleci/tests/lighthouse-all.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
{
"el_client_type": "reth",
"cl_client_type": "lighthouse"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "lighthouse"
}
],
"network_params": {
Expand Down
4 changes: 4 additions & 0 deletions .circleci/tests/lodestar-all.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
{
"el_client_type": "reth",
"cl_client_type": "lodestar"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "lodestar"
}
],
"network_params": {
Expand Down
4 changes: 4 additions & 0 deletions .circleci/tests/mix.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
{
"el_client_type": "reth",
"cl_client_type": "lodestar"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "teku"
}
],
"network_params": {
Expand Down
4 changes: 4 additions & 0 deletions .circleci/tests/nimbus-all.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
{
"el_client_type": "reth",
"cl_client_type": "nimbus"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "nimbus"
}
],
"network_params": {
Expand Down
4 changes: 4 additions & 0 deletions .circleci/tests/prysm-all.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
{
"el_client_type": "reth",
"cl_client_type": "prysm"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "prysm"
}
],
"network_params": {
Expand Down
4 changes: 4 additions & 0 deletions .circleci/tests/teku-all.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
{
"el_client_type": "reth",
"cl_client_type": "teku"
},
{
"el_client_type": "ethereumjs",
"cl_client_type": "teku"
}
],
"network_params": {
Expand Down

0 comments on commit b86d886

Please sign in to comment.