1

刚开始使用巡航控制,但似乎找不到任何关于这个或至少更好的方法。简单的脚本:

<cruisecontrol xmlns:cb="urn:ccnet.config.builder">

测试 cvs.exe theRoot theModule ....

问题是我想检查多个模块的更新,但不是 theRoot 中的每个模块。像这样的东西:

<sourcecontrol type="cvs">
   <executable>cvs.exe</executable>
   <cvsroot>theRoot</cvsroot>
   <module>theModule</module>
   <module>theSecondModule</module>
   <module>theThirdModule</module>
</sourcecontrol> 

有没有办法做到这一点?

4

2 回答 2

1

将您的类型更改为“多”并为每个被跟踪的模块添加部分

<sourcecontrol type="multi">
  <sourceControls>
    <cvs>
       <executable>cvs.exe</executable>
       <!-- Insert other module1 details -->
    </cvs>
    <cvs>
       <executable>cvs.exe</executable>
       <!-- Insert other module2 details -->
    </cvs>
  </sourceControls>
</sourcecontrol>

这是一些文档

于 2010-10-01T20:55:14.753 回答
0

您还可以使用过滤的源代码控制:http ://confluence.public.thoughtworks.org/display/CCNET/Filtered+Source+Control+Block 。
您描述的是按路径过滤的包含过滤器列表。

<sourcecontrol type="filtered">
  <sourceControlProvider type="cvs">
    <executable>cvs.exe</executable>
    <project>$/Kunigunda/ServiceLocator</project>
</sourceControlProvider>
<inclusionFilters>
    <pathFilter>
      <pattern>$/Module1/**/*.*</pattern>
    </pathFilter>
    <pathFilter>
      <pattern>$/Module2/**/*.*</pattern>
    </pathFilter>
    <pathFilter>
      <pattern>$/Module3/**/*.*</pattern>
    </pathFilter>
  </inclusionFilters>
</sourcecontrol>
于 2010-10-01T21:30:01.797 回答