I want to set Jenkins to run a job every 3rd minute, but not starting at 0. Basically, I have 3 jobs and I want to cycle through them each minute.
The first job I can run every 3rd minute with */3 * * * *
. But the second I tried 1/3 * * * *
and it failed with hudson.remoting.ProxyException: line 1:2: unexpected token: /
How do I write this expression?