Jenkins 管道中具有并行输入消息的并行阶段
Parallel Stages with parallel input message in Jenkins pipe line
我有以下管道:
pipeline {
agent any
stages {
stage('CI') {
parallel {
stage('גמלאות') {
steps {
input message: "Pass Sanity?"
}
}
stage('וועדות') {
steps {
input message: "Pass Sanity?"
}
}
stage('מבוטח') {
steps {
input message: "Pass Sanity?"
}
}
}
}
}
}
我期待在每个阶段的 UI 3 选项中看到 select。但只得到一个。
如果我会查看传统控制台,那么我将能够 select 是继续还是中止。
有没有办法通过 UI?
获得此功能
这是 UI:
的示例
看来代码是正确的。问题出在 Jenkins 插件上。
我开始使用 Blueocean 插件,现在它似乎工作正常:
我有以下管道:
pipeline {
agent any
stages {
stage('CI') {
parallel {
stage('גמלאות') {
steps {
input message: "Pass Sanity?"
}
}
stage('וועדות') {
steps {
input message: "Pass Sanity?"
}
}
stage('מבוטח') {
steps {
input message: "Pass Sanity?"
}
}
}
}
}
}
我期待在每个阶段的 UI 3 选项中看到 select。但只得到一个。
如果我会查看传统控制台,那么我将能够 select 是继续还是中止。
有没有办法通过 UI?
获得此功能
这是 UI:
的示例
看来代码是正确的。问题出在 Jenkins 插件上。
我开始使用 Blueocean 插件,现在它似乎工作正常: