I am trying to get the individual build step results of any Hudson\Jenkins Job. Is it possible to get the data via Hudson Java API inside the plugin or through remote api?
Thanks.
|
|
|
The following link will get you some XML describing the last successful build. This is going through the Jenkins API
Please notice that you get a tag that contains the state of the job. If you don't like xml, you can get json like this:
and a Python api like:
If you want more documentation, go to
and it should give you some good information about the Jenkins API. You can even construct your URL to be a query, for example:
That will give you an xml fragment with just the result of the latest successful build. Good luck! |
|||||
|