increased jenkins pipeline timeout value

This commit is contained in:
Ravi Srinivasan
2019-07-04 11:20:11 +05:30
committed by GitHub
parent e86f9e22eb
commit 2aa4b3aa52

View File

@@ -1,7 +1,7 @@
pipeline { pipeline {
options { options {
// set a timeout of 30 minutes for this pipeline // set a timeout of 60 minutes for this pipeline
timeout(time: 30, unit: 'MINUTES') timeout(time: 60, unit: 'MINUTES')
} }
agent { agent {
node { node {
@@ -133,4 +133,4 @@ pipeline {
} }
} }
} }
} }