I’m setting up CruiseControl.net and I’ve never worked in an environment which used CI before.
I’m wondering whats the average/best practice of time between builds?
How often is continous?
Thanks,
Mike
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Continuous usually means that a build will happen after every checkin. There’s no point in doing builds if nothing has changed, and if you build after a checkin then you can be certain of what the problem is if the build fails. We do an incremental build after every checkin to our main branch, and also a nightly clean build to catch dependency issues the incremental sometimes misses.