Hi,
I would like to trigger a task every 2nd hour of the day on the hour
(e.g., 0:00, 2:00, 4:00...). My triggers section looks like this:
<triggers>
<multiTrigger operator="Or">
<triggers>
<cronTrigger buildCondition="ForceBuild" name="crontab">
<cronExpression>0 */2 * * *</cronExpression>
</cronTrigger>
</triggers>
</multiTrigger>
</triggers>
After the first firing of the cron trigger, however, it seems like it
continuously fires. My build takes ~30 minutes, and I currently see
builds going at
0:00, 0:30, 1:00, 1:30...
Basically as soon as one build completes, the next one is kicked off
immediately. The "next build time" in my web dashboard also never
updates to the next expected time (e.g., after cronTrigger fires at
0:00, the "next build time" remains at 0:00).
Could anyone provide some assistance?
Thanks,
--Jason