[DO-1037] add_job_for_lic_backup (!35)

Reviewed-on: https://git.avroid.tech/DevOps/jenkins-pipelines/pulls/35
Reviewed-by: Denis Patrakeev <denis.patrakeev@avroid.tech>
Co-authored-by: Rustam Tagaev <rustam.tagaev@avroid.tech>
Co-committed-by: Rustam Tagaev <rustam.tagaev@avroid.tech>
This commit is contained in:
Rustam Tagaev
2024-09-26 11:56:57 +03:00
committed by Denis Patrakeev
parent 1d72f7743b
commit 74ac9ea929
2 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
pipelineJob('License-server/license-test-backup') {
description("Тест бэкапов")
definition {
cpsScm {
scm {
git {
remote {
url("${JENKINS_GIT_REPOSITORY_URL}/DevOps/jenkins-pipelines.git")
credentials("${JENKINS_GIT_CREDENTIALS_HTTP}")
}
branch('master')
}
}
scriptPath('pipelines/License-server/license-test-backup.groovy')
}
}
properties {
disableConcurrentBuilds()
pipelineTriggers {
triggers {
cron {
spec('H 6 * * *')
}
}
}
}
}