Files
jenkins-pipelines/jobs-dsl/jobs/Cloud/Deploy/openresty_deploy.groovy
Rustam Tagaev 29e0bebe35 [DO-1378] add_ci_for_openresty (!55)
cloud openresty deploy

Co-authored-by: Rustam Tagaev <rustam.tagaev@avroid.tech>
Reviewed-on: https://git.avroid.tech/DevOps/jenkins-pipelines/pulls/55
Reviewed-by: Denis Patrakeev <denis.patrakeev@avroid.team>
Reviewed-by: Stanislav Gabenov <stanislav.gabenov@avroid.team>
2024-12-09 16:55:42 +03:00

26 lines
630 B
Groovy

pipelineJob('Cloud/Deploy/openresty-deploy') {
logRotator {
numToKeep(10)
artifactNumToKeep(10)
}
definition {
cpsScm {
scm {
git {
remote {
url("${JENKINS_GIT_REPOSITORY_SSH_URL}/DevOps/jenkins-pipelines.git")
credentials("${JENKINS_GIT_CREDENTIALS_SSH}")
}
branch('master')
}
}
scriptPath('pipelines/Cloud/Deploy/openresty-deploy.groovy')
}
}
properties {
disableConcurrentBuilds()
}
}