jenkins pipeline stage view does not show sub project stage build progress

笑着哭i 提交于 2019-12-11 03:06:19

问题


i am trying to run a jenkins job which calls other jobs, which i do by doing the following:

node {
    stage ('Building Sub Project1') {
        res = build job: 'Sub Project1'

        stage ('Building Sub Project2') {
            build job: 'Sub Project2', parameters: [[$class: 'StringParameterValue', name: 'hash', value: res.buildVariables.hash]]
        }
    }
}

But unfortunately i see only the 2 stages that i've defined in this project. Is there a way to visualise the "sub" project stages that are being build in the background?

来源:https://stackoverflow.com/questions/44723911/jenkins-pipeline-stage-view-does-not-show-sub-project-stage-build-progress

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!