jenkins: update template

* Use generic maven and jdk names
* Add sonarqube reporting
This commit is contained in:
Paul Campbell 2018-03-10 18:16:47 +00:00
parent 34cc98107d
commit 9a5dcb5e7a

View file

@ -13,43 +13,47 @@ pipeline {
when { when {
expression { expression {
(env.GIT_BRANCH == 'master' || env.CHANGE_TARGET == 'master') && (env.GIT_BRANCH == 'master' || env.CHANGE_TARGET == 'master') &&
(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT") } (readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT")
}
} }
steps { steps {
error("Build failed because SNAPSHOT version") error("Build failed because SNAPSHOT version")
} }
} }
stage('Static Code Analysis') { stage('Static Code Analysis') {
when { expression { findFiles(glob: '**/src/main/java/**/*.java').length > 0 } }
steps { steps {
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') { withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} compile checkstyle:checkstyle pmd:pmd" sh "${mvn} compile"
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"
}
} }
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
} }
} }
stage('Build') { stage('Build Java Next') {
parallel { steps {
stage('Java 8') { withMaven(maven: 'maven', jdk: 'JDK Next') {
steps { sh "${mvn} clean install"
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') {
sh "${mvn} clean install"
}
}
} }
stage('Java 9') { }
steps { }
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 9') { stage('Build Java LTS') {
sh "${mvn} clean install" steps {
} withMaven(maven: 'maven', jdk: 'JDK LTS') {
} sh "${mvn} clean install"
} }
} }
} }
stage('Test Results') { stage('Test Results') {
when { expression { findFiles(glob: '**/target/surefire-reports/*.xml').length > 0 } }
steps { steps {
junit '**/target/surefire-reports/*.xml' junit '**/target/surefire-reports/*.xml'
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class' jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') { withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} com.gavinmogan:codacy-maven-plugin:coverage " + sh "${mvn} com.gavinmogan:codacy-maven-plugin:coverage " +
"-DcoverageReportFile=target/site/jacoco/jacoco.xml " + "-DcoverageReportFile=target/site/jacoco/jacoco.xml " +
"-DprojectToken=`$JENKINS_HOME/codacy/token` " + "-DprojectToken=`$JENKINS_HOME/codacy/token` " +
@ -59,6 +63,7 @@ pipeline {
} }
} }
stage('Archiving') { stage('Archiving') {
when { expression { findFiles(glob: '**/target/*.jar').length > 0 } }
steps { steps {
archiveArtifacts '**/target/*.jar' archiveArtifacts '**/target/*.jar'
} }
@ -66,7 +71,7 @@ pipeline {
stage('Deploy') { stage('Deploy') {
when { expression { (env.GIT_BRANCH == 'master' && env.GIT_URL.startsWith('https://')) } } when { expression { (env.GIT_BRANCH == 'master' && env.GIT_URL.startsWith('https://')) } }
steps { steps {
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') { withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} deploy --activate-profiles release -DskipTests=true" sh "${mvn} deploy --activate-profiles release -DskipTests=true"
} }
} }