I am using Jenkins with tomcat. I use jenkins cli from java class to create job and to build. I want to check, is any build is progress. Is there anyway to do that ?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The following XPath expression will give you the total number of busy executors on the master and all slaves, if it’s > 0, you have a job running:
http://[jenkins_server]/computer/api/xml?xpath=/computerSet/busyExecutors/text()You can connect to your server from Java via HTTP and query it.