0

I would like to schedule Jenkins job for example every hour between 9 am to 9 pm.

* 1/12 * * * 

is not working.

Dave Bacher
  • 15,652
  • 3
  • 63
  • 86
user3759870
  • 53
  • 2
  • 5
  • 1
    possible duplicate of [How to schedule jobs in Jenkins](http://stackoverflow.com/questions/12472645/how-to-schedule-jobs-in-jenkins) – kkamil Jan 08 '15 at 15:59

2 Answers2

2

Jenkins uses Cron expressions for scheduling. You can see details in answer to linked question in the comments.

Answer to your question would be H 9-21 * * *

Darko
  • 36
  • 2
  • 4
0

TO make it run every 12 hours once, H */12 * * *

Anand
  • 1