options {
disableConcurrentBuilds()
timeout(time: 1, unit: 'HOURS')
buildDiscarder(logRotator(numToKeepStr: '10'))
// Konfiguracja harmonogramu
triggers {
cron('H H 1,6,11,16,21,26 * *')
}
}
This commit is contained in:
parent
e9ce03dd02
commit
494174d3fb
|
|
@ -2,11 +2,16 @@ pipeline {
|
|||
|
||||
agent any
|
||||
|
||||
properties([
|
||||
pipelineTriggers([
|
||||
cron('H H 1,6,11,16,21,26 * *') // Lepsza wersja
|
||||
])
|
||||
])
|
||||
options {
|
||||
disableConcurrentBuilds()
|
||||
timeout(time: 1, unit: 'HOURS')
|
||||
buildDiscarder(logRotator(numToKeepStr: '10'))
|
||||
|
||||
// Konfiguracja harmonogramu
|
||||
triggers {
|
||||
cron('H H 1,6,11,16,21,26 * *')
|
||||
}
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Make https cert for my domains') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue