ci:Jenkinsfile 동시 빌드 방지 옵션 추가

This commit is contained in:
2026-02-25 11:24:39 +09:00
parent 63f22e2538
commit f8294509e5

4
Jenkinsfile vendored
View File

@@ -1,6 +1,10 @@
pipeline { pipeline {
agent any agent any
options {
disableConcurrentBuilds()
}
environment { environment {
DEPLOY_USER = 'hskwon' DEPLOY_USER = 'hskwon'
RELEASE_ID = new Date().format('yyyyMMdd_HHmmss') RELEASE_ID = new Date().format('yyyyMMdd_HHmmss')