Get build information from jenkins using rest api -


i want retrieve build summary last 3 days jenkins using rest api's , save result xml file, how can proceed this?

you read full guide in:

http://your_jenkins:8080/job/your_job/api/ 

the build sumary in xml format:

http://your_jenkins:8080/job/your_job/api/xml 

retrieve name of first 10 builds

http://your_jenkins:8080/job/your_job/api/xml?%20tree=jobs[name]{0,10} 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -