I have a jenkins job used to automate VMs start/stop in Azure. Currently, I have this schedule to run daily (stops VMs at 8 and starts them back up at 5AM). I want to be able to run this job Monday-Friday(Start/Stop) then Saturday-Sunday(Stop only) until the work week starts again.
I am using one job & set my schedule using the Build Periodically with parameters plugin. set as follows:
H 5 * * 1-5 % OPTIONS=start
H 20 * * 1-5 % OPTIONS=stop
What would you recommend.?