Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hudson as passive server

Tags:

hudson

Is it possible to use Hudson only as a passive server,i.e, not using it for building purpose instead sending build results generated by some other tool in maybe XML format and using Hudson to only display the results??

like image 651
Arnab Sen Gupta Avatar asked Jun 08 '10 09:06

Arnab Sen Gupta


2 Answers

It's very doable.

If it's running on the same machine, such as a cron job, check out http://wiki.hudson-ci.org/display/HUDSON/Monitoring+external+jobs.

If you need to pull data from somewhere else, use a shell script as a build target, and do what you need to to stage the data locally (scp, etc.).

like image 195
Andrew B Avatar answered Dec 21 '22 23:12

Andrew B


It may very well be possible using periodic builds and the URL SCM plug-in to pull in the xml files and the Plot Plug-in for display but more information is required before a more detailed answer can be provided.

What build tool are you currently using to generate build results?

like image 20
liam.j.bennett Avatar answered Dec 21 '22 23:12

liam.j.bennett