From 96db784b10badb6aa9c127d8c3749e0ba5581aaf Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Tue, 8 Aug 2023 18:36:31 -0400 Subject: [PATCH] Increase the reproducible-runtime timeout as it was getting hit in CI --- tests/reproducible-runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/reproducible-runtime/src/lib.rs b/tests/reproducible-runtime/src/lib.rs index 24278fb5..2648061d 100644 --- a/tests/reproducible-runtime/src/lib.rs +++ b/tests/reproducible-runtime/src/lib.rs @@ -7,7 +7,7 @@ pub fn reproducibly_builds() { use dockertest::{PullPolicy, Image, Composition, DockerTest}; const RUNS: usize = 3; - const TIMEOUT: u16 = 60 * 60; // 60 minutes + const TIMEOUT: u16 = 120 * 60; // 120 minutes serai_docker_tests::build("runtime".to_string());