0

I am new to Jenkins API. I just had assignement in company where PL asked me to create a new job in Jenkins where I will run all the testing,build related things on my code and it should create dashboard where all figures and graph should be shown. He said that its feasible. Can anyone please guide me to do so.

Pramod
  • 69
  • 1
  • 10
  • Please be more clear about what kind of graphs and figures you are talking about. – Akhil Sep 25 '14 at 14:02
  • It should show compilation error number,Test cases run result, JUnit test cases run result. So how many files, number of files having error, total test cases run/failed/successful. – Pramod Sep 26 '14 at 04:44

2 Answers2

1

Checkout Sectioned-Vew-Plugin.

Pushkar
  • 541
  • 4
  • 18
0

Create a Job on Jenkins and add /api after the Url. You could see the API Information related to the Job you have just created. The API will contain the Get End points for Retrieving the data. Its available in JSON as well as XMl which you can parse and use as the source of Info for your dashboard. You can also trigger a new Build by using the Post API.