R – Stop CruiseControl.NET auto build

cruisecontrol.netsvn

I have CruiseControl.NET setup with SVN source control.

I have all my projects working perfectly, builing and deploying to my different staging environments.

However, CC.NET automatically starts building whenever a commit is made to the project in SVN. We want to build on demand, not automatically all the time, because all our builds deploy to staging and out testers will be logged out all the time.

Anyone who knows how to disable this?

Best Answer

It was pretty simple, though I should learn to read the documentation on the Triggers section of a Project in CC.NET:

Specifying an empty element (<triggers />) means integrations are only ever forced manually (for example using CCTray or the Web Dashboard.) Not including a element at all means the project has a single Interval Trigger with default configuration.

Related Topic