Jenkinsfile 개선:
- skipDefaultCheckout 옵션 추가 (Deploy 노드 Git 접근 불필요)
This commit is contained in:
@@ -4,6 +4,7 @@ pipeline {
|
||||
options {
|
||||
timestamps()
|
||||
disableConcurrentBuilds()
|
||||
skipDefaultCheckout() // stage별 agent의 자동 SCM checkout 방지 (Deploy 노드는 git 접근 불필요, unstash로만 WAR 수신)
|
||||
buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20'))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user