post Jenkins - BlueOcean 上的构建操作在哪里?

Where is post build action on Jenkins - BlueOcean?

我正在尝试使用 blueocean 配置多分支管道。

以前我使用 post 构建操作来发送通知并触发其他任务取决于构建状态,如下所示:

目前我正在寻找多分支管道中的类似功能。

但在旧界面和 blueocean 管道编辑器中找不到任何关于 post 构建操作的信息。

Jenkins 默认值:

蓝海:

由于您使用的是管道,因此 post 构建操作会进入经典视图中 'Build Configuration' 下配置的管道代码(即 Jenkinsfile)。

post section 可以放置在管道范围或阶段范围内。

  • 在管道范围内,它应该在阶段块之后。
  • 在阶段范围内,post 部分可以放在任何阶段块之后。

下面是在管道末端调用 post 构建操作的示例。

pipeline {
    node any
    stages {
        stage('one') {

        }
        stage('two') {
        }
    } // end of stages block
    post {
        <checkstyle step>
    } //post block in pipeline scope
}