Setting up Jenkins and a Jenkins instance
Jenkins is our continuous build system. That is, it can be configured to check out code from our SVN (either on request on the Jenkins website or automatically when a a file in the repository changes), and test it. Our typical use case is our standard Makefile or build.xml file with the standard targets build (for compiling the code), test (for running the unit tests), checkstyle (for checking the style), and clean (clean up all non-source files).
Installing Jenkins
TODO: a very short description or link to an official webpage would be ok.
Setting up a Jenkins instance
TODO: describe the steps and the necessary files. Take CompleteSearch (on Linux) as an example.