It looks like the git source control provider for CruiseControl.Net will only monitor a single git branch. Is there a way to make it monitor all git branches? I know you can do this in Jenkins by setting 'Branches to Build' to '**'. Is there similar functionality for CruiseControl.Net?
Asked
Active
Viewed 312 times
1 Answers
3
Currently, as at 1.8, No!
<branch>
tag allows a single branch only, defaulted to master.
When the targeted branch is changed (different hash, can be non-fast-forward), ccnet checkout the remote branch head and run build tasks.
You may consider to create a separate project which is the same as the first one, only the <branch>
tag is different to monitor another branch.

linquize
- 19,828
- 10
- 59
- 83
-
That's what I figured. Thanks for the quick response. – Nathan Roe Sep 11 '12 at 12:23