increase Jenkins timeouts by 10m (#4086)

This commit is contained in:
tersec 2022-09-07 09:51:08 +00:00 committed by GitHub
parent a770fadd01
commit e367f612e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

6
ci/Jenkinsfile vendored
View File

@ -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')
} } } } } }
} }