ci: Remove global timeout
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
Łukasz Magiera committed
Apr 23, 2018 at 15:27 UTC
8cd87a739915fe0726fb2d0db75925ab4b6bdce3
1 file changed
+2
-3
ci/Jenkinsfile
+2
-3
@@ -3,7 +3,6 @@ import groovy.transform.Field
3
/* SETTINGS */
4
5
// in minutes
6
-def global_timeout = 30
6
def sharness_timeout = 15
7
def gotest_timeout = 10
8
def build_timeout = 20
@@ -71,7 +70,7 @@ def gobuild_step(list) {
70
71
/* PIPELINE */
72
74
-ansiColor('xterm') { withEnv(['TERM=xterm-color']) { timeout(time: global_timeout, unit: 'MINUTES') {
73
+ansiColor('xterm') { withEnv(['TERM=xterm-color']) {
74
stage('Checks') {
75
parallel(
76
'go fmt': {
@@ -191,4 +190,4 @@ ansiColor('xterm') { withEnv(['TERM=xterm-color']) { timeout(time: global_timeou
190
},
191
)
192
}
194
-}}}
193
+}}