From c8140c454f19928812a58a5d2f300b6c7ff782c4 Mon Sep 17 00:00:00 2001 From: Steve Hill Date: Tue, 16 Apr 2019 12:17:40 -0700 Subject: [PATCH] Increase timeout to 2 hours The build itself doesn't take this long, but it can take a significant amount of time to find a node to be executed. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 359b7970..d2857b68 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,6 +51,6 @@ for (int i = 0; i < platforms.size(); ++i) { } } -timeout(60) { +timeout(120) { parallel(tasks) }