From 8cd87a739915fe0726fb2d0db75925ab4b6bdce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Mon, 23 Apr 2018 15:27:21 +0200 Subject: [PATCH] ci: Remove global timeout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit License: MIT Signed-off-by: Ɓukasz Magiera --- ci/Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index b93f3a6de00..494d30fd6a5 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -3,7 +3,6 @@ import groovy.transform.Field /* SETTINGS */ // in minutes -def global_timeout = 30 def sharness_timeout = 15 def gotest_timeout = 10 def build_timeout = 20 @@ -71,7 +70,7 @@ def gobuild_step(list) { /* PIPELINE */ -ansiColor('xterm') { withEnv(['TERM=xterm-color']) { timeout(time: global_timeout, unit: 'MINUTES') { +ansiColor('xterm') { withEnv(['TERM=xterm-color']) { stage('Checks') { parallel( 'go fmt': { @@ -191,4 +190,4 @@ ansiColor('xterm') { withEnv(['TERM=xterm-color']) { timeout(time: global_timeou }, ) } -}}} +}}