increase Jenkins timeouts by 10m (#4086)
This commit is contained in:
parent
a770fadd01
commit
e367f612e8
|
@ -53,7 +53,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps { timeout(30) {
|
steps { timeout(40) {
|
||||||
sh 'make LOG_LEVEL=TRACE'
|
sh 'make LOG_LEVEL=TRACE'
|
||||||
} }
|
} }
|
||||||
}
|
}
|
||||||
|
@ -77,13 +77,13 @@ pipeline {
|
||||||
stage('Finalizations') {
|
stage('Finalizations') {
|
||||||
stages { /* parallel builds of minimal / mainnet not yet supported */
|
stages { /* parallel builds of minimal / mainnet not yet supported */
|
||||||
stage('minimal') {
|
stage('minimal') {
|
||||||
steps { script { timeout(15) {
|
steps { script { timeout(25) {
|
||||||
launchLocalTestnet('minimal')
|
launchLocalTestnet('minimal')
|
||||||
} } }
|
} } }
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('mainnet') {
|
stage('mainnet') {
|
||||||
steps { script { timeout(45) {
|
steps { script { timeout(55) {
|
||||||
launchLocalTestnet('mainnet')
|
launchLocalTestnet('mainnet')
|
||||||
} } }
|
} } }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue