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>
29 lines
757 B
Groovy
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 * * *')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|