Issue
I know I can call localhost/job/RSpec/lastBuild/api/json
to get the status of the lastest Jenkins build. However, since our build runs very long (a couple hours), I'm really more interested in the last complete build status than the run that is running at this exact moment.
Is there an api end point for the last fully run build? Or should I instead pull the full list of builds and select the next-to-last one from there?
Solution
Try http://$host/job/$jobname/lastSuccessfulBuild/api/json
Jenkins (and Hudson) expose multiple different builds, such as lastBuild, lastStableBuild, lastSuccessfulBuild, lastFailedBuild, lastUnstableBuild, lastUnsuccessfulBuild, lastCompletedBuild.
Answered By - coffeebreaks
Answer Checked By - Timothy Miller (JavaFixing Admin)