Merge pull request #76 from kemitix/jenkins
jenkins: only update sonarqube when on develop branch
This commit is contained in:
commit
d9c526e291
1 changed files with 8 additions and 3 deletions
|
@ -32,9 +32,14 @@ pipeline {
|
|||
sh "${mvn} checkstyle:checkstyle"
|
||||
sh "${mvn} pmd:pmd"
|
||||
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
||||
withSonarQubeEnv('sonarqube') {
|
||||
sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('SonarQube (develop only)') {
|
||||
when { expression { env.GIT_BRANCH == 'develop' } }
|
||||
steps {
|
||||
withSonarQubeEnv('sonarqube') {
|
||||
sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue