1
0
Fork 0

draft: schedule to run monthly
dustin/pythonctnr/pipeline/head There was a failure building this commit Details

Dustin 2022-10-31 10:17:45 -05:00
parent 5f0d0cade4
commit e8a1ae0365
1 changed files with 7 additions and 0 deletions

7
ci/Jenkinsfile vendored
View File

@ -16,9 +16,16 @@ pipeline {
disableConcurrentBuilds() disableConcurrentBuilds()
} }
triggers {
cron 'TZ=America/Chicago\n20 10 31 10 *'
}
parameters { parameters {
booleanParam \ booleanParam \
name: 'Clean', name: 'Clean',
defaultValue: currentBuild.getBuildCauses(
'hudson.triggers.timerTrigger$TimerTriggerCause'
).size(),
description: 'Clean the workspace and perform a full rebuild' description: 'Clean the workspace and perform a full rebuild'
} }