stages {
stage('1') {
steps {
}
}
stage('2') {
steps {
}
}
stage('3') {
steps {
script{
try{}catch{
// 重新回到 stage2 执行构建
}
}
}
}
}
}
这样是否能做到