1

我需要每 6 小时触发一次构建。如何在巡航控制中做到这一点?timebuild 标签只允许我在特定时间触发构建。

4

1 回答 1

1

试试这个,例如 -

配置文件

<!-- Build every 6 hours -->
<schedule interval="21600">
<composite>
...

</composite>
</schedule>

或者您可以在特定时间阈值之后混合构建并按计划构建 -

...
<modificationset>
    <clearcase branch=...
     viewpath=.../>

<timebuild username=... time=.../>

</modificationset>
<schedule

interval="21600">

<ant
     antscript=...
     antWorkingDir=...
     buildfile=...
     target=.../>
</schedule>
...

有关详细信息,请参阅本文 - http://flylib.com/books/en/2.615.1.51/1/

如果您了解CruiseControl.NET,请参阅间隔触发器- http://ccnet.sourceforge.net/CCNET/Interval%20Trigger.html

希望这可以帮助。

于 2013-03-20T12:58:03.817 回答