Jenkinsfile 개선:
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled

- skipDefaultCheckout 옵션 추가 (Deploy 노드 Git 접근 불필요)
This commit is contained in:
Rinjae
2026-07-06 21:05:00 +09:00
parent 4b4ef4196e
commit cad574324e
+1
View File
@@ -4,6 +4,7 @@ pipeline {
options {
timestamps()
disableConcurrentBuilds()
skipDefaultCheckout() // stage별 agent의 자동 SCM checkout 방지 (Deploy 노드는 git 접근 불필요, unstash로만 WAR 수신)
buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20'))
}