increase Jenkins timeout (#3497)
This commit is contained in:
parent
aace7086d3
commit
a92b175bcc
|
@ -97,7 +97,7 @@ def runStages(nodeDir) {
|
||||||
parallel(
|
parallel(
|
||||||
"Linux": {
|
"Linux": {
|
||||||
throttle(['nimbus-eth2']) {
|
throttle(['nimbus-eth2']) {
|
||||||
timeout(time: 4, unit: 'HOURS') {
|
timeout(time: 5, unit: 'HOURS') {
|
||||||
node("linux") {
|
node("linux") {
|
||||||
withEnv(["NPROC=${sh(returnStdout: true, script: 'nproc').trim()}"]) {
|
withEnv(["NPROC=${sh(returnStdout: true, script: 'nproc').trim()}"]) {
|
||||||
runStages("linux")
|
runStages("linux")
|
||||||
|
@ -108,7 +108,7 @@ parallel(
|
||||||
},
|
},
|
||||||
"macOS (AMD64)": {
|
"macOS (AMD64)": {
|
||||||
throttle(['nimbus-eth2']) {
|
throttle(['nimbus-eth2']) {
|
||||||
timeout(time: 4, unit: 'HOURS') {
|
timeout(time: 5, unit: 'HOURS') {
|
||||||
node("macos && x86_64") {
|
node("macos && x86_64") {
|
||||||
withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) {
|
withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) {
|
||||||
runStages("macos_amd64")
|
runStages("macos_amd64")
|
||||||
|
@ -119,7 +119,7 @@ parallel(
|
||||||
},
|
},
|
||||||
"macOS (ARM64)": {
|
"macOS (ARM64)": {
|
||||||
throttle(['nimbus-eth2']) {
|
throttle(['nimbus-eth2']) {
|
||||||
timeout(time: 4, unit: 'HOURS') {
|
timeout(time: 5, unit: 'HOURS') {
|
||||||
node("macos && arm64") {
|
node("macos && arm64") {
|
||||||
withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) {
|
withEnv(["NPROC=${sh(returnStdout: true, script: 'sysctl -n hw.logicalcpu').trim()}"]) {
|
||||||
runStages("macos_arm64")
|
runStages("macos_arm64")
|
||||||
|
|
Loading…
Reference in New Issue