Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

add summary information to a job results page in Jenkins/Hudson

Tags:

jenkins

hudson

I have some jobs that deploy and run automated integration tests as part of our CI system.

These jobs are shell scripts that use ssh to deploy and then run commands on the systems to be tested. Then they gather the results in a tarball and archive it. One of the files in this tarball contains a nicely formatted summary that I would like to make visible without having to read through the console output or open a tarball.

  • Is there a plugin for adding text to the job results page?
  • Is there a plugin that will produce reports from archived job results?
  • Is there an entirely more elegant way of doing this?
like image 680
Arthur Ulfeldt Avatar asked Oct 10 '11 22:10

Arthur Ulfeldt


2 Answers

I would look at at Summary Display Plugin.

If you can output an XML from your build task, it will display it on the build page, using tables and other formatting.

like image 62
jwg Avatar answered Jan 03 '23 13:01

jwg


If you can get your results file into HTML format, the HTML Publisher plugin will do the job for you.

like image 40
gareth_bowles Avatar answered Jan 03 '23 14:01

gareth_bowles