Skip to content

Commit b2e8b67

Browse files
authored
Reduce number of basic sim test nodes from 7 to 4 (#7566)
Our basic sim test has been [flaky](https://github.com/sigp/lighthouse/actions/runs/15458818777/job/43515966229) for some time, and seems like it has gotten worse since electra fork was added to it in #7199. It looks like the github runner is struggling with the load, currently it runs 7 nodes on a 4 CPU runner, which is definitely too much. We could consider moving this to run on our self hosted runner - but I think running 7 nodes is unnecessary and we can probably trim test this down. Reduce number of basic sim test nodes from 7 (3 BN + 3 Proposer BN + 1 extra) to 4 (2 BN + 1 Proposer BN + 1 extra). If we want to run more nodes, we'd have to consider running on self hosted runners.
1 parent e098f66 commit b2e8b67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/simulator/src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ pub fn cli_app() -> Command {
2020
.short('n')
2121
.long("nodes")
2222
.action(ArgAction::Set)
23-
.default_value("3")
23+
.default_value("2")
2424
.help("Number of beacon nodes"),
2525
)
2626
.arg(
2727
Arg::new("proposer-nodes")
2828
.short('p')
2929
.long("proposer-nodes")
3030
.action(ArgAction::Set)
31-
.default_value("3")
31+
.default_value("1")
3232
.help("Number of proposer-only beacon nodes"),
3333
)
3434
.arg(

0 commit comments

Comments
 (0)