increase Jenkins CI timeout to 4 hours (#3278)

This commit is contained in:
tersec 2022-01-13 02:05:38 +00:00 committed by GitHub
parent 8be858224b
commit 184f71cb59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View File

@ -94,7 +94,7 @@ def runStages() {
parallel(
"Linux": {
throttle(['nimbus-eth2']) {
timeout(time: 3, unit: 'HOURS') {
timeout(time: 4, unit: 'HOURS') {
node("linux") {
withEnv(["NPROC=${sh(returnStdout: true, script: 'nproc').trim()}"]) {
runStages()
@ -105,7 +105,7 @@ parallel(
},
"macOS": {
throttle(['nimbus-eth2']) {
timeout(time: 3, unit: 'HOURS') {
timeout(time: 4, unit: 'HOURS') {
node("macos && x86_64") {
withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) {
runStages()