Files
jenkins-pipelines/jobs-dsl/jobs/License-server/license_test_backup.groovy
Rustam Tagaev 74ac9ea929 [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>
2024-09-26 11:56:57 +03:00

29 lines
757 B
Groovy

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 * * *')
}
}
}
}
}