CI: Add timestamps and timeouts to jenkinsfiles

Change-Id: Ide83574dc957bc1df28e30a69079140050dfc35f
This commit is contained in:
George Joseph 2018-10-04 09:13:22 -06:00
parent f9cc33c821
commit 1598c7a306
4 changed files with 16 additions and 0 deletions

View File

@ -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"

View File

@ -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) * * *'
}

View File

@ -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'
}

View File

@ -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"