Jenkins Pipeline: view logs of child build job
问题 I have a jenkins pipeline that is running a "job" as one of its stages. I am wondering, is there a way to see the logs of the build job in a pipeline, without clicking into the job and viewing the console output. It would just make it a lot easier to see the failures without some many clicks. 回答1: Yes there's a way how to do this, unfortuntaly it looks like it's not documented: The build returns an object of type RunWrapper which you can use to access the Run object via getRawBuild() .