hotfix: remove old image from pipelines (!72)

Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
Reviewed-on: https://git.avroid.tech/DevOps/jenkins-pipelines/pulls/72
This commit is contained in:
Aleksandr Vodyanov
2025-02-04 16:15:21 +03:00
parent a4d3ac9695
commit bcba28b360
3 changed files with 1 additions and 21 deletions

View File

@@ -0,0 +1,32 @@
pipelineJob('OMP/nextcloud-sync') {
logRotator {
numToKeep(10)
artifactNumToKeep(10)
}
properties {
disableConcurrentBuilds()
pipelineTriggers {
triggers {
cron {
spec('H 9 * * *')
}
}
}
}
definition {
cpsScm {
scm {
git {
remote {
url("${JENKINS_GIT_REPOSITORY_URL}/devops/jenkins-pipelines.git")
credentials("${JENKINS_GIT_CREDENTIALS_HTTP}")
}
branch('master')
}
}
scriptPath('pipelines/OMP/nextcloud_sync.groovy')
}
}
}