Skip to content

Commit

Permalink
ci: Remove global timeout
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
  • Loading branch information
magik6k committed Apr 23, 2018
1 parent 48e2aa3 commit 8cd87a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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': {
Expand Down Expand Up @@ -191,4 +190,4 @@ ansiColor('xterm') { withEnv(['TERM=xterm-color']) { timeout(time: global_timeou
},
)
}
}}}
}}

0 comments on commit 8cd87a7

Please sign in to comment.