test cicd

This commit is contained in:
hiondal 2025-09-13 19:55:46 +09:00
parent 3cbf56066f
commit 7ce7b17553
2 changed files with 1 additions and 8 deletions

View File

@ -166,3 +166,4 @@ configure(subprojects.findAll { it.name == 'api-gateway' }) {
}
}

View File

@ -72,14 +72,6 @@ podTemplate(
def imageTag = getImageTag()
def environment = params.ENVIRONMENT ?: 'dev'
def skipSonarQube = (params.SKIP_SONARQUBE?.toLowerCase() == 'true')
// 파라미터 값 디버깅 출력
echo "=== Parameter Debug Info ==="
echo "params.SKIP_SONARQUBE raw value: [${params.SKIP_SONARQUBE}]"
echo "params.SKIP_SONARQUBE type: ${params.SKIP_SONARQUBE?.getClass()}"
echo "skipSonarQube final boolean value: ${skipSonarQube}"
echo "Will skip SonarQube: ${skipSonarQube ? 'YES' : 'NO'}"
echo "=========================="
def services = ['api-gateway', 'user-service', 'bill-service', 'product-service', 'kos-mock']
try {