I've read the help in Jenkins itself and also How to schedule jobs in Jenkins?.
In Jenkins you can build a job periodically by defining a cron like syntax with the addition of H
(for "hash").
So defining
H H(0-7) * * *
means build once between 0:00 AM and 7:00 AM.
But how can I define 1 job between 20:00 PM and 7:00 AM of the next day?
Is there any way?
I tried doing
H H(20-23) * * *
H H(0-7) * * *
but ofcourse this will build two times.
Is there any possibility to make it only build once but within this time frame?