0

How to :

Schedule job at specific dates across several months ?

it will be ~10 dates.

Second is there a tool that simulate cron, such that u can pass date/time and the tool tell you did cron triggers or not

sten
  • 7,028
  • 9
  • 41
  • 63
  • 1
    Check out [This Simulator](https://crontab.cronhub.io/) and [This Answer](https://stackoverflow.com/questions/12472645/how-do-i-schedule-jobs-in-jenkins) – Noam Helmer Jun 22 '22 at 16:52

1 Answers1

1

cron does not schedule events in that manner. Jenkins scheduler is cron-based.

This answer provides several options.

Apparently there is now a released plugin - Schedule Build which appears to support calling the scheduleBuild action referenced in my groovy based answer.

See constraint (you can only schedule one build at a time) unless parameterized.

Ian W
  • 4,559
  • 2
  • 18
  • 37