How to make force build with interval with CCNet -
on our ccnet, there build (called release) build full package of application , copy msi on ftp server client.
there no trigger on project , should manually launched via cctray or dashboard.
is possible manually force project project start on fixed time (like 01:00:00) ?
thx,
simply use scheduletrigger
tag.
<scheduletrigger time="01:00" buildcondition="forcebuild" name="scheduled"> <weekdays> <weekday>monday</weekday> </weekdays> </scheduletrigger>
you can specify day in week weekdays
tag.
Comments
Post a Comment