Latest Entries
Dec 30

CruiseControl .NET WebDashboard Tips

Did you know that you can disable the “force” and “stop” build buttons for each project on CruiseControl.NET’s webdashboard?

Inside the <remote services> code block, you can simply add allowForceBuild and allowStartStopBuild options:

<remoteservices>
      <servers>
         <server name="BUILDSERVER01"
         url="tcp://buildserver01:21234
         /CruiseManager.rem"
         allowForceBuild="false"
         allowStartStopBuild="false" />
      </servers>
</remoteservices>

By doing this, you would be able to have better control of the individual builds without any unwanted build trigger from developers, etc.

2 Responses to “CruiseControl .NET WebDashboard Tips”

  1. Vinayak said:

    In which file should we add the above tag ?

  2. Davy said:

    In the main cc.net config file.

Leave a Reply


Related Topics:

No related posts.