--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/f3ac9d12-93e0-4d1d-a4f2-385ebbb39868%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Just be aware that jobs that are scheduled to run during that period are still scheduled, and you see them waiting in the Build Queue.
Also, be careful if you have slaves configured “take this slave on-line when in demand, and off-line when idle”. If you have a job that Is tied to a particular slave, then when the job is put in the build queue, the slave will be taken online even if Jenkins is in “prepare for shutdown” state.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/CA%2BnPnMxiPpnNXtJR8GufUjH%2Bb5Qv%2B3Wfc6ATCpMJ1EAs-PX2Qg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
This e-mail and any attachments may contain confidential, copyright and or privileged material, and are for the use of the intended addressee only. If you are not the intended addressee or an authorised recipient of the addressee please notify us of receipt by returning the e-mail and do not use, copy, retain, distribute or disclose the information in or attached to the e-mail.
Any opinions expressed within this e-mail are those of the individual and not necessarily of Diamond Light Source Ltd.
Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments are free from viruses and we cannot accept liability for any damage which you may sustain as a result of software viruses which may be transmitted in or with the message.
Diamond Light Source Limited (company no. 4375679). Registered in England and Wales with its registered office at Diamond House, Harwell Science and Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom
import jenkins.model.*
import hudson.model.*
def jobPattern = "_Deploy_PR*"
def c= new GregorianCalendar()
def hour = c.get(Calendar.HOUR_OF_DAY)
if ((hour >= 10) && (hour < 16)) {
def matchedJobs = Jenkins.instance.items.findAll { job ->
job.name =~ /$jobPattern/
}
matchedJobs.each { job ->
println "Enabling matching job ${job.name}"
job.enable()
}
}
else {
def matchedJobs = Jenkins.instance.items.findAll { job ->
job.name =~ /$jobPattern/
}
matchedJobs.each { job ->
println "Disabling matching job ${job.name}"
job.disable()
}
}
import jenkins.model.*
import hudson.model.*
def c = new GregorianCalendar()
def hour = c.get(Calendar.HOUR_OF_DAY)
def jobPattern = "_Deploy_PR*"
def matchedJobs = Jenkins.instance.items.findAll { job -> job.name =~ /$jobPattern/ }
matchedJobs.each { job ->
if ((hour >= 10) && (hour < 16)) {
println "Enabling matching job ${job.name}"
job.enable()
} else {