是否可以从Stage View或Jenkins CLI执行特定管道的阶段?
例如下面的管道,是否可以仅执行stage(“ B”)?
def start(Map data) {
node {
stage("A") {
}
stage("B") {
}
...
}
}
尝试了以下cli命令:
java -jar jenkins-cli.jar -s http://[ip]:[port]/ -auth user:password restart-from-stage -j [JOB_NAME] -s [stage name]
但是出现错误:
ERROR: Not authorized to restart builds of this job