Skip to content

Commit efb360c

Browse files
committed
Downgrade Geth to v1.10.20 in EE integration tests (#3382)
## Issue Addressed NA ## Proposed Changes The execution integration tests have started failing since Geth updated to v1.10.21. More details here: ethereum/go-ethereum#25427 (comment) This PR pins our version at v1.10.20. ## Additional Info NA
1 parent 5bdba15 commit efb360c

File tree

1 file changed

+7
-2
lines changed
  • testing/execution_engine_integration/src

1 file changed

+7
-2
lines changed

testing/execution_engine_integration/src/geth.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::{env, fs::File};
77
use tempfile::TempDir;
88
use unused_port::unused_tcp_port;
99

10-
const GETH_BRANCH: &str = "master";
10+
// const GETH_BRANCH: &str = "master";
1111
const GETH_REPO_URL: &str = "https://github.com/ethereum/go-ethereum";
1212

1313
pub fn build_result(repo_dir: &Path) -> Output {
@@ -26,8 +26,13 @@ pub fn build(execution_clients_dir: &Path) {
2626
build_utils::clone_repo(execution_clients_dir, GETH_REPO_URL).unwrap();
2727
}
2828

29+
// TODO: this should be set back to the latest release once the following issue is resolved:
30+
//
31+
// - https://github.com/ethereum/go-ethereum/issues/25427
32+
//
2933
// Get the latest tag on the branch
30-
let last_release = build_utils::get_latest_release(&repo_dir, GETH_BRANCH).unwrap();
34+
// let last_release = build_utils::get_latest_release(&repo_dir, GETH_BRANCH).unwrap();
35+
let last_release = "v1.10.20";
3136
build_utils::checkout(&repo_dir, dbg!(&last_release)).unwrap();
3237

3338
// Build geth

0 commit comments

Comments
 (0)