From 13460fd9306a9fd50124794986629a8cbf78b3e5 Mon Sep 17 00:00:00 2001 From: hiondal Date: Sat, 13 Sep 2025 15:33:42 +0900 Subject: [PATCH] =?UTF-8?q?SKIP=5FSONARQUBE=20=EA=B8=B0=EB=B3=B8=EA=B0=92?= =?UTF-8?q?=EC=9D=84=20true=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SonarQube 분석을 기본적으로 건너뛰도록 설정 - 필요시에만 false로 설정하여 품질 분석 실행 --- deployment/cicd/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/cicd/Jenkinsfile b/deployment/cicd/Jenkinsfile index e0cf799..8e19ecb 100644 --- a/deployment/cicd/Jenkinsfile +++ b/deployment/cicd/Jenkinsfile @@ -71,7 +71,7 @@ podTemplate( def props def imageTag = getImageTag() def environment = params.ENVIRONMENT ?: 'dev' - def skipSonarQube = params.SKIP_SONARQUBE ?: false + def skipSonarQube = params.SKIP_SONARQUBE ?: true def services = ['api-gateway', 'user-service', 'bill-service', 'product-service', 'kos-mock'] try {