this one works - a bit too well actually - when the common project builds
the server is unresponsive for 10 minutes running all the projects using
this template
looks exactly the same doesn´t it? I would not call every 2 hours for
continous exactly :P but thats not the problem - I would guess that your SCM
system is not reporting changes
<cb:define name="Continous_And_Nightly_Trigger">
<triggers>
<intervalTrigger seconds="$(MyTimeBetweenChecks)" name="continuous"
buildCondition="IfModificationExists" />
<scheduleTrigger time="23:30" buildCondition="ForceBuild"
name="ContinousTriggerNightly">
<weekDays>
<!--my thinking is that you want to have a new build every night
before a workday-->
<weekDay>Monday</weekDay>
<weekDay>Tuesday</weekDay>
<weekDay>Wednesday</weekDay>
<weekDay>Thursday</weekDay>
<weekDay>Sunday</weekDay>
</weekDays>
</scheduleTrigger>
<!--most of our projects have a softlinked common project - we need to
make sure all projects are tested after new change-->
<projectTrigger project="Common_all" triggerStatus="Success"
triggerFirstTime="true" >
<innerTrigger type="intervalTrigger"
seconds="$(MyTimeBetweenChecks)" buildCondition="ForceBuild"/>
</projectTrigger>
</triggers>
</cb:define>