ES
Size: a a a
ES
ES
M
M
DS
node {
def stage1 = {
stage('stage1') {
println 'stage1'
}
}
def stage2 = {
stage('stage2') {
error 'error stage 2'
}
}
def stage3 = {
stage('stage3') {
println 'stage3'
}
}
for (i = 0; i < 3; i++) {
stage1()
try {
stage2()
} catch(e) { continue }
break
}
if (i == 3) { error 'error all attempts' }
stage3()
}
RB
DS
RB
DS
RB
II
node(){...}
? если так, то не проще ли на тех нодах сделать просто по одному экзекутору?RB
M
RB
RB
M
M
RB
AS
java.io.IOException: Not enough storage is available to process this command
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
M