Skip to content

Commit

Permalink
increase Jenkins timeout (#3497)
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec authored Mar 14, 2022
1 parent aace708 commit a92b175
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def runStages(nodeDir) {
parallel(
"Linux": {
throttle(['nimbus-eth2']) {
timeout(time: 4, unit: 'HOURS') {
timeout(time: 5, unit: 'HOURS') {
node("linux") {
withEnv(["NPROC=${sh(returnStdout: true, script: 'nproc').trim()}"]) {
runStages("linux")
Expand All @@ -108,7 +108,7 @@ parallel(
},
"macOS (AMD64)": {
throttle(['nimbus-eth2']) {
timeout(time: 4, unit: 'HOURS') {
timeout(time: 5, unit: 'HOURS') {
node("macos && x86_64") {
withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) {
runStages("macos_amd64")
Expand All @@ -119,7 +119,7 @@ parallel(
},
"macOS (ARM64)": {
throttle(['nimbus-eth2']) {
timeout(time: 4, unit: 'HOURS') {
timeout(time: 5, unit: 'HOURS') {
node("macos && arm64") {
withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) {
runStages("macos_arm64")
Expand Down

0 comments on commit a92b175

Please sign in to comment.