rebuilds the container every wednesday
Some checks failed
tv7playlist/pipeline/head There was a failure building this commit

This commit is contained in:
2021-03-07 20:44:04 +01:00
parent 7e1bf65efb
commit daf91e46c1

7
Jenkinsfile vendored
View File

@@ -1,3 +1,6 @@
// Multi-branch pipeline. Build once on wednesday from a "master" branch only
CRON_SETTINGS = BRANCH_NAME == "master" ? '''H H * * 3'''
pipeline {
environment {
imagename = "phaefelfinger/tv7playlist"
@@ -7,6 +10,10 @@ pipeline {
agent { node { label 'docker' } }
triggers {
cron(CRON_SETTINGS)
}
stages {
stage('Cloning repository') {
steps {