triggers {
cron('H H 1,6,11,16,21,26 * *')
}
options {
disableConcurrentBuilds()
timeout(time: 1, unit: 'HOURS')
buildDiscarder(logRotator(numToKeepStr: '10'))
}
This commit is contained in:
parent
494174d3fb
commit
5391195161
|
|
@ -2,15 +2,14 @@ pipeline {
|
||||||
|
|
||||||
agent any
|
agent any
|
||||||
|
|
||||||
|
triggers {
|
||||||
|
cron('H H 1,6,11,16,21,26 * *')
|
||||||
|
}
|
||||||
|
|
||||||
options {
|
options {
|
||||||
disableConcurrentBuilds()
|
disableConcurrentBuilds()
|
||||||
timeout(time: 1, unit: 'HOURS')
|
timeout(time: 1, unit: 'HOURS')
|
||||||
buildDiscarder(logRotator(numToKeepStr: '10'))
|
buildDiscarder(logRotator(numToKeepStr: '10'))
|
||||||
|
|
||||||
// Konfiguracja harmonogramu
|
|
||||||
triggers {
|
|
||||||
cron('H H 1,6,11,16,21,26 * *')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue