Re: calling another job from parent job

2018-11-13 Thread Victor Martinez
As far as I'm aware off, the run of each 'job/pipeline' is independent therefore all the stages, in any downstream* job, won't be shown in the upstream job unfortunately. The only way I'm aware of, is using a shared library/pipeline to call the same steps that the downstream job runs. *** aka a

Re: calling another job from parent job

2018-11-13 Thread ZillaYT
Are you using a Jenkinsfile or are you doing this in the Jenkins job config page? On Tuesday, November 13, 2018 at 12:56:57 AM UTC-5, Akshay Paturkar wrote: > > Hi All, > i am trying to call job from another job and able to do it by following > below instructions . > https://jenkins.io/doc/pipel

calling another job from parent job

2018-11-12 Thread Akshay Paturkar
Hi All, i am trying to call job from another job and able to do it by following below instructions . https://jenkins.io/doc/pipeline/steps/pipeline-build-step/ But I am not able to see stages executed under called job. how do we enable stages of called job to be displayed under build job stage ?