Skip to content

Commit b86d886

Browse files
authored
feat: add ethereumjs to nightly runners (ethereum#154)
Changelog picked up from commits here: feat: add ethereumjs to nightly runners
1 parent 68572cd commit b86d886

File tree

9 files changed

+81
-0
lines changed

9 files changed

+81
-0
lines changed

.circleci/config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,15 @@ jobs:
6666
- checkout
6767
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/erigon-all.json)"
6868

69+
ethereumjs-all:
70+
executor: ubuntu_vm
71+
resource_class: xlarge
72+
steps:
73+
- <<: *setup_kurtosis
74+
- checkout
75+
76+
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/ethereumjs-all.json)"
77+
6978
full-interop:
7079
executor: ubuntu_vm
7180
resource_class: xlarge
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"participants": [
3+
{
4+
"el_client_type": "ethereumjs",
5+
"cl_client_type": "teku"
6+
},
7+
{
8+
"el_client_type": "ethereumjs",
9+
"cl_client_type": "prysm"
10+
},
11+
{
12+
"el_client_type": "ethereumjs",
13+
"cl_client_type": "nimbus"
14+
},
15+
{
16+
"el_client_type": "ethereumjs",
17+
"cl_client_type": "lighthouse"
18+
},
19+
{
20+
"el_client_type": "ethereumjs",
21+
"cl_client_type": "lodestar"
22+
}
23+
],
24+
"network_params": {
25+
"capella_fork_epoch": 1
26+
},
27+
"launch_additional_services": false
28+
}

.circleci/tests/full-interop.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,26 @@
9999
{
100100
"el_client_type":"besu",
101101
"cl_client_type":"prysm"
102+
},
103+
{
104+
"el_client_type":"ethereumjs",
105+
"cl_client_type":"lighthouse"
106+
},
107+
{
108+
"el_client_type":"ethereumjs",
109+
"cl_client_type":"nimbus"
110+
},
111+
{
112+
"el_client_type":"ethereumjs",
113+
"cl_client_type":"lodestar"
114+
},
115+
{
116+
"el_client_type":"ethereumjs",
117+
"cl_client_type":"teku"
118+
},
119+
{
120+
"el_client_type":"ethereumjs",
121+
"cl_client_type":"prysm"
102122
}
103123
],
104124
"network_params":{

.circleci/tests/lighthouse-all.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
{
2020
"el_client_type": "reth",
2121
"cl_client_type": "lighthouse"
22+
},
23+
{
24+
"el_client_type": "ethereumjs",
25+
"cl_client_type": "lighthouse"
2226
}
2327
],
2428
"network_params": {

.circleci/tests/lodestar-all.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
{
2020
"el_client_type": "reth",
2121
"cl_client_type": "lodestar"
22+
},
23+
{
24+
"el_client_type": "ethereumjs",
25+
"cl_client_type": "lodestar"
2226
}
2327
],
2428
"network_params": {

.circleci/tests/mix.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
{
2020
"el_client_type": "reth",
2121
"cl_client_type": "lodestar"
22+
},
23+
{
24+
"el_client_type": "ethereumjs",
25+
"cl_client_type": "teku"
2226
}
2327
],
2428
"network_params": {

.circleci/tests/nimbus-all.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
{
2020
"el_client_type": "reth",
2121
"cl_client_type": "nimbus"
22+
},
23+
{
24+
"el_client_type": "ethereumjs",
25+
"cl_client_type": "nimbus"
2226
}
2327
],
2428
"network_params": {

.circleci/tests/prysm-all.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
{
2020
"el_client_type": "reth",
2121
"cl_client_type": "prysm"
22+
},
23+
{
24+
"el_client_type": "ethereumjs",
25+
"cl_client_type": "prysm"
2226
}
2327
],
2428
"network_params": {

.circleci/tests/teku-all.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
{
2020
"el_client_type": "reth",
2121
"cl_client_type": "teku"
22+
},
23+
{
24+
"el_client_type": "ethereumjs",
25+
"cl_client_type": "teku"
2226
}
2327
],
2428
"network_params": {

0 commit comments

Comments
 (0)