Merge "CI: Add timestamps and timeouts to jenkinsfiles" into 13

13.24
Jenkins2 7 years ago committed by Gerrit Code Review
commit 8f6d527349

@ -11,6 +11,10 @@
* you can't do that in a delcarative pipeline.
*/
pipeline {
options {
timestamps
timeout(time: 60, unit: 'MINUTES')
}
triggers {
/*
* This trigger will match either the "asterisk" or "Security-asterisk"

@ -11,6 +11,10 @@
* you can't do that in a delcarative pipeline.
*/
pipeline {
options {
timestamps()
timeout(time: 3, unit: 'HOURS')
}
triggers {
cron 'H H(0-4) * * *'
}

@ -11,6 +11,10 @@
* you can't do that in a delcarative pipeline.
*/
pipeline {
options {
timestamps()
timeout(time: 1, unit: 'DAYS')
}
triggers {
cron 'H H(0-4) * * 0'
}

@ -11,6 +11,10 @@
* you can't do that in a delcarative pipeline.
*/
pipeline {
options {
timestamps()
timeout(time: 30, unit: 'MINUTES')
}
triggers {
/*
* This trigger will match either the "asterisk" or "Security-asterisk"

Loading…
Cancel
Save