You need to sign in to do that
Don't have an account?
Hudson Integration - Any Interest?
We're thinking seriously about using Hudson (http://hudson-ci.org/) to automatically run our APEX unit tests on a nightly basis and distribute the results if tests failed or coverage drops below a certain percentage.
Is there any interest in participating in this project if we make it open source? Since Hudson is open, we'd be inclined to contribute back to the community.
Is anyone else doing something like this on some other CI tool like CruiseControl? We currently have a cron-based java solution for it running on a dev box, but we'd really like to take advantage of the trending and build-status tools that hudson provides.
Since hudson can execute ant scripts or any command line tool, I don't think you will need anything extra to build/deploy/test from hudson. Going to need this myself pretty soon, so I'll post my experiences with it.
Did you get a chance to set up Hudson integration? Can you please share your experience/issues faced?
Yes, we did get it working pretty well. We're using force-deploy-with-xml-report-task to do code coverage analysis.
It was pretty simple:
and build.xml like this:
This has worked well for us. We run it nightly, as we have over 650 tests, and it locks the org while they're running.
Thanks for sharing the details. It was very useful.