From 1b921a64e68e8b7878385041289d2cc4d1e5fb48 Mon Sep 17 00:00:00 2001 From: chonghe <44791194+chong-he@users.noreply.github.com> Date: Fri, 8 May 2026 16:12:38 +0800 Subject: [PATCH] Fix execution integration test CI failure (#9277) Co-Authored-By: Tan Chee Keong --- testing/execution_engine_integration/src/nethermind.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/execution_engine_integration/src/nethermind.rs b/testing/execution_engine_integration/src/nethermind.rs index 6a336161bd..e606f5558c 100644 --- a/testing/execution_engine_integration/src/nethermind.rs +++ b/testing/execution_engine_integration/src/nethermind.rs @@ -20,6 +20,7 @@ fn build_result(repo_dir: &Path) -> Output { .arg("src/Nethermind/Nethermind.sln") .arg("-c") .arg("Release") + .arg("-p:TreatWarningsAsErrors=false") .current_dir(repo_dir) .output() .expect("failed to make nethermind")