From 9dc1bfb92603e4706d0ed5595f8535c4c948f64c Mon Sep 17 00:00:00 2001 From: ondal Date: Mon, 1 Dec 2025 13:31:58 +0900 Subject: [PATCH] =?UTF-8?q?Jenkinsfile=20SKIP=5FSONARQUBE=20=ED=8C=8C?= =?UTF-8?q?=EB=9D=BC=EB=AF=B8=ED=84=B0=20=EA=B8=B0=EB=B3=B8=EA=B0=92=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SKIP_SONARQUBE 파라미터 기본값을 'true'로 설정 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- deployment/cicd/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/cicd/Jenkinsfile b/deployment/cicd/Jenkinsfile index d347002..59a0333 100644 --- a/deployment/cicd/Jenkinsfile +++ b/deployment/cicd/Jenkinsfile @@ -67,7 +67,7 @@ podTemplate( def props def imageTag = getImageTag() def environment = params.ENVIRONMENT ?: 'dev' - def skipSonarQube = (params.SKIP_SONARQUBE?.toLowerCase() == 'true') + def skipSonarQube = params.SKIP_SONARQUBE ?: 'true' def services = ['api-gateway', 'user-service', 'bill-service', 'product-service', 'kos-mock'] try {