Skip to content

Commit

Permalink
increase Jenkins timeouts by 10m (#4086)
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec authored Sep 7, 2022
1 parent a770fad commit e367f61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pipeline {
}

stage('Build') {
steps { timeout(30) {
steps { timeout(40) {
sh 'make LOG_LEVEL=TRACE'
} }
}
Expand All @@ -77,13 +77,13 @@ pipeline {
stage('Finalizations') {
stages { /* parallel builds of minimal / mainnet not yet supported */
stage('minimal') {
steps { script { timeout(15) {
steps { script { timeout(25) {
launchLocalTestnet('minimal')
} } }
}

stage('mainnet') {
steps { script { timeout(45) {
steps { script { timeout(55) {
launchLocalTestnet('mainnet')
} } }
}
Expand Down

0 comments on commit e367f61

Please sign in to comment.