Computer Science, asked by kishankumar4255, 11 months ago

If you have multiple projects, and if you need to check for new updates, every five minutes, which is the correct CRON expression that Jenkins can use to avoid polling of all the projects at the same time.

Answers

Answered by ankurbadani84
3

Answer:

Use Build periodically

Explanation:

Setting up the cron jobs in Jenkins by using “Build periodically” for scheduling the jenins Job s. This can help in continuous polling for updates.

To schedule the build every 5 minutes, below will do the job :

*/5 * * * *

OR

H/5 * * * *

Similar questions