Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jenkins Workflow Build Information

How do you access current, and related, build information from within a Jenkins workflow groovy script?

I can see things like currentBuild.result and currentBuild.previousBuild being documented, but I can't see how I can access, for example:

  • The URL of the current build job.
  • The URL of build jobs that this workflow triggered.
  • The console output of a particular failed build job, etc.

Thanks for any pointers.

like image 712
user3710806 Avatar asked Nov 04 '15 20:11

user3710806


1 Answers

currentBuild.rawBuild will give you the non cached hudson.model.Run object, see hudson.model.Run

from there, to access i.e. the build log:

def buildLog = currentBuild.rawBuild.log

currentBuild.rawBuild is also of type hudson.model.AbstractBuild which can give you other details like changeset, actions

like image 175
John Stadt Avatar answered Oct 12 '22 14:10

John Stadt