is there a plugin or some configuration in Hudson CI where the job will not run during a certain time of day? I was thinking of a job like:

Run job A on version control change if not after 5pm and before 9am

Thanks!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Maybe you could set up a global property that gets set to on/off depending on time and you configure the builds to use that global property.

But the best way would probably to set up the scm polling to just not poll at the desired time of day. Then no changes are found and no build is triggered ;-)

link|improve this answer
Didn't think about that, but limiting SCM polling makes perfect sense! The global property is also a very interesting solution, thanks for the great answer! – DrakeAnderson Jul 30 '11 at 5:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.