Can Jenkins plot using different time zones?

In some versions of crontab, you can set the timezone when the job should run, for example:

TZ=GMT
30 11 * * *     

      

This will run at 11:30 GMT every day, even if the server was in a different time zone.

Even though Jenkins scheduling is cron based, it doesn't seem to have this specific syntax. Is there any other way to do this in Jenkins?

thank

+3


source to share


2 answers


In Jenkins, there is no way to do this. You can run builds by calling the url from cron though.



+2


source


Looks like they added this in 2.60.2.



0


source







All Articles