mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-06 08:06:24 +00:00
Jenkinsfile SKIP_SONARQUBE 파라미터 기본값 설정
- SKIP_SONARQUBE 파라미터 기본값을 'true'로 설정 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
ab27787951
commit
9dc1bfb926
2
deployment/cicd/Jenkinsfile
vendored
2
deployment/cicd/Jenkinsfile
vendored
@ -67,7 +67,7 @@ podTemplate(
|
|||||||
def props
|
def props
|
||||||
def imageTag = getImageTag()
|
def imageTag = getImageTag()
|
||||||
def environment = params.ENVIRONMENT ?: 'dev'
|
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']
|
def services = ['api-gateway', 'user-service', 'bill-service', 'product-service', 'kos-mock']
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user