如何在CruiseControl中进行每小时构建

如何在CruiseControl中进行每小时构建,cruisecontrol,Cruisecontrol,我需要每6小时触发一次构建。在巡航控制中如何做到这一点? timebuild标签只允许我在特定时间触发构建。例如,试试这个- config.xml <!-- Build every 6 hours --> <schedule interval="21600"> <composite> ... </composite> </schedule> ... 或者,您可以将特定时间阈值后的构建与按计划构建混合使用- ... <mod

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

例如,试试这个-

config.xml

<!-- 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>
...
。。。

如果您想了解有关CruiseControl.NET的信息,请参阅间隔触发器-


希望这有帮助。

例如,试试这个-

config.xml

<!-- 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>
...
。。。

如果您想了解有关CruiseControl.NET的信息,请参阅间隔触发器-

希望这有帮助