I know how to do it using polling, with
triggers { scm("H/15 * * * *") }
How do I specify the trigger to Build periodically instead?
Use cron to build periodically, as in:
cron
triggers { cron("H/15 * * * *") }
This will build every 15 minutes regardless of whether there are SCM changes.
Use
cron
to build periodically, as in:This will build every 15 minutes regardless of whether there are SCM changes.