Skip to content

Commit 8cd87a7

Browse files
committed
ci: Remove global timeout
License: MIT Signed-off-by: Łukasz Magiera <[email protected]>
1 parent 48e2aa3 commit 8cd87a7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ci/Jenkinsfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import groovy.transform.Field
33
/* SETTINGS */
44

55
// in minutes
6-
def global_timeout = 30
76
def sharness_timeout = 15
87
def gotest_timeout = 10
98
def build_timeout = 20
@@ -71,7 +70,7 @@ def gobuild_step(list) {
7170

7271
/* PIPELINE */
7372

74-
ansiColor('xterm') { withEnv(['TERM=xterm-color']) { timeout(time: global_timeout, unit: 'MINUTES') {
73+
ansiColor('xterm') { withEnv(['TERM=xterm-color']) {
7574
stage('Checks') {
7675
parallel(
7776
'go fmt': {
@@ -191,4 +190,4 @@ ansiColor('xterm') { withEnv(['TERM=xterm-color']) { timeout(time: global_timeou
191190
},
192191
)
193192
}
194-
}}}
193+
}}

0 commit comments

Comments
 (0)