IT-Sheriff
IT-Sheriff

Reputation: 164

How to schedule job in Jenkins at particular timings

I want to schedule Jenkins jobs at three specific times (viz. 5 AM, 1 PM, 5 PM). What is the expression to do that?

Regards Manish Mehra

Upvotes: 0

Views: 217

Answers (2)

Fayzan
Fayzan

Reputation: 141

Use below expression if you want to schedule it at 5:30, 13:30 and 17:30

30 5,13,17 * * *

Upvotes: 1

Chandra Sekhar
Chandra Sekhar

Reputation: 16516

you can use expression like : 0 5,13,17 * * *
Please refer to Cron Wiki for better understanding.

Upvotes: 1

Related Questions