-
Bug
-
Resolution: Duplicate
-
Major
-
None
I have a pipeline like this, in a Jenkins job bigjob:
pipeline { agent any; stages { stage("job1") { steps { build job: 'job1'; } } stage("job2") { steps { build job: 'job2'; } } } }
In the blueocean UI, in the UI for bigjob, I cannot see the logs for job1 and job2.
It would be nice in blueocean if there was a way where I could click on something and go to the instances of job1 and job2 and see their logs.
Right now, I have to switch back to the classic UI, go to the console log,
which has links to job1 and job2.
- duplicates
-
JENKINS-38339 UI for downstream jobs launched with 'build' step
- In Review