How to configure continuous C ++ build on Hudson / Jenkins

I would like Hudson / Jenkins for our C ++ compilations for continuous integration. We use CMake to create files and subversion to control soruce.

Can you tell me about the steps for setting up a C ++ build on Hudson (maybe you are using a sample project)

Thank you Sri

+5
source share
1 answer
  • Create a project in Jenkins
  • Add Subversion SCM, Add Repository URL
  • Create a schedule (try with * * * * *for the first try)
  • Add a new build script (shell script) that starts compilation
  • If you have tests, add a new step (shell script) that will run the tests
  • ()

, .

+7

All Articles