jenkins: only update sonarqube when on develop branch

This commit is contained in:
Paul Campbell 2018-03-10 20:17:11 +00:00
parent 3b9e9f7e34
commit b11c21571f

View file

@ -32,12 +32,17 @@ pipeline {
sh "${mvn} checkstyle:checkstyle"
sh "${mvn} pmd:pmd"
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
}
}
}
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"
}
}
}
}
stage('Build Java Next') {
when { expression { true == false } }
steps {