How can I run a job created in Jenkins every one minute ? Am I missing anything?
PS: I'm trying not to use: */1 * * * *
How can I run a job created in Jenkins every one minute ? Am I missing anything?
PS: I'm trying not to use: */1 * * * *
Try * * * * *
to run every minute.
Unfortunately H/1 * * * *
does not work due to open defect.
Your intuition is right, H/1
is supposed to behave like "run every minute".
However, there is a well-known bug in Jenkins. See JENKINS-22129.
Currently, H/1
behaves like "run every hour".
Use this format it will Run a Jenkins job every one minute "* * * * *"
To run the build process every minute,
check the Build periodically option and add * * * * *
© 2022 - 2024 — McMap. All rights reserved.