From a92b175bccb815787ecbe04150552216f047404c Mon Sep 17 00:00:00 2001 From: tersec Date: Mon, 14 Mar 2022 15:49:47 +0000 Subject: [PATCH] increase Jenkins timeout (#3497) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 94d4c3590b..f9840fcd36 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -97,7 +97,7 @@ def runStages(nodeDir) { parallel( "Linux": { throttle(['nimbus-eth2']) { - timeout(time: 4, unit: 'HOURS') { + timeout(time: 5, unit: 'HOURS') { node("linux") { withEnv(["NPROC=${sh(returnStdout: true, script: 'nproc').trim()}"]) { runStages("linux") @@ -108,7 +108,7 @@ parallel( }, "macOS (AMD64)": { throttle(['nimbus-eth2']) { - timeout(time: 4, unit: 'HOURS') { + timeout(time: 5, unit: 'HOURS') { node("macos && x86_64") { withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) { runStages("macos_amd64") @@ -119,7 +119,7 @@ parallel( }, "macOS (ARM64)": { throttle(['nimbus-eth2']) { - timeout(time: 4, unit: 'HOURS') { + timeout(time: 5, unit: 'HOURS') { node("macos && arm64") { withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) { runStages("macos_arm64")