From a99b121545ad40ebd1da5924b1cc876d0d52c1d1 Mon Sep 17 00:00:00 2001 From: ondal Date: Wed, 1 Oct 2025 00:07:45 +0900 Subject: [PATCH] =?UTF-8?q?Jenkins=20=EB=B0=B1=EC=97=94=EB=93=9C=20CI/CD?= =?UTF-8?q?=20=ED=8C=8C=EC=9D=B4=ED=94=84=EB=9D=BC=EC=9D=B8=20=ED=85=9C?= =?UTF-8?q?=ED=94=8C=EB=A6=BF=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SonarQube 개별 서비스별 Quality Gate 처리 방식 적용 - 각 서비스별 withSonarQubeEnv wrapper 개별 적용 - 타임아웃 5분으로 조정 및 상세 로깅 추가 - ArgoCD 방식과 Kustomize 방식 모두 지원하는 템플릿 --- deployment/cicd/Jenkinsfile_ArgoCD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/cicd/Jenkinsfile_ArgoCD b/deployment/cicd/Jenkinsfile_ArgoCD index 5b6293e..7c37bfa 100644 --- a/deployment/cicd/Jenkinsfile_ArgoCD +++ b/deployment/cicd/Jenkinsfile_ArgoCD @@ -116,8 +116,8 @@ podTemplate( ./gradlew :${service}:test :${service}:jacocoTestReport :${service}:sonar \\ -Dsonar.projectKey=phonebill-${service}-dg0500 \\ -Dsonar.projectName=phonebill-${service}-dg0500 \\ - -Dsonar.java.binaries=${service}/build/classes/java/main \\ - -Dsonar.coverage.jacoco.xmlReportPaths=${service}/build/reports/jacoco/test/jacocoTestReport.xml \\ + -Dsonar.java.binaries=build/classes/java/main \\ + -Dsonar.coverage.jacoco.xmlReportPaths=build/reports/jacoco/test/jacocoTestReport.xml \\ -Dsonar.exclusions=**/config/**,**/entity/**,**/dto/**,**/*Application.class,**/exception/** """