jenkins: update and switch to trunk-based development

This commit is contained in:
Paul Campbell 2018-07-18 19:59:22 +01:00
parent 2fb19ddc8c
commit e9bd71d86e

View file

@ -1,87 +1,98 @@
final String mvn = "mvn --batch-mode --update-snapshots" final String publicRepo = 'https://github.com/kemitix/'
final String mvn = "mvn --batch-mode --update-snapshots --errors"
final dependenciesSupportJDK = 10
pipeline { pipeline {
agent any agent any
stages { stages {
stage('Environment') { stage('Build & Test') {
steps { steps {
sh 'set' withMaven(maven: 'maven', jdk: 'JDK 1.8') {
} sh "${mvn} clean compile checkstyle:checkstyle pmd:pmd test"
} // Code Coverage to Codacy
stage('no SNAPSHOT in master') { sh "${mvn} jacoco:report com.gavinmogan:codacy-maven-plugin:coverage " +
// checks that the pom version is not a snapshot when the current or target branch is master "-DcoverageReportFile=target/site/jacoco/jacoco.xml " +
when { "-DprojectToken=`$JENKINS_HOME/codacy/token` " +
expression { "-DapiToken=`$JENKINS_HOME/codacy/apitoken` " +
(env.GIT_BRANCH == 'master' || env.CHANGE_TARGET == 'master') && "-Dcommit=`git rev-parse HEAD`"
(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT") // Code Coverage to Jenkins
} jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
} // PMD to Jenkins
steps {
error("Build failed because SNAPSHOT version")
}
}
stage('Static Code Analysis') {
when { expression { findFiles(glob: '**/src/main/java/**/*.java').length > 0 } }
steps {
withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} compile"
sh "${mvn} checkstyle:checkstyle"
sh "${mvn} pmd:pmd"
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: '' pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
// Checkstyle to Jenkins
step([$class : 'hudson.plugins.checkstyle.CheckStylePublisher',
pattern : '**/target/checkstyle-result.xml',
healthy : '20',
unHealthy: '100'])
} }
} }
} }
stage('SonarQube (develop only)') { stage('Verify & Install') {
when { expression { env.GIT_BRANCH == 'develop' && env.GIT_URL.startsWith('https://') } } steps {
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
sh "${mvn} -DskipTests install"
}
}
}
stage('SonarQube (published)') {
when { expression { isPublished(publicRepo) } }
steps { steps {
withSonarQubeEnv('sonarqube') { withSonarQubeEnv('sonarqube') {
withMaven(maven: 'maven', jdk: 'JDK LTS') { withMaven(maven: 'maven', jdk: 'JDK 1.8') {
sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar" sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar"
} }
} }
} }
} }
stage('Build Java Next') { stage('Deploy (published release branch)') {
when {
expression {
(isReleaseBranch() &&
isPublished(publicRepo) &&
notSnapshot())
}
}
steps { steps {
withMaven(maven: 'maven', jdk: 'JDK Next') { withMaven(maven: 'maven', jdk: 'JDK 1.8') {
sh "${mvn} clean install -Djava.version=9" sh "${mvn} --activate-profiles release deploy"
} }
} }
} }
stage('Build Java LTS') { stage('Build Java 9') {
when { expression { dependenciesSupportJDK >= 9 } }
steps { steps {
withMaven(maven: 'maven', jdk: 'JDK LTS') { withMaven(maven: 'maven', jdk: 'JDK 9') {
sh "${mvn} clean install" sh "${mvn} clean verify -Djava.version=9"
} }
} }
} }
stage('Test Results') { stage('Build Java 10') {
when { expression { findFiles(glob: '**/target/surefire-reports/*.xml').length > 0 } } when { expression { dependenciesSupportJDK >= 10 } }
steps { steps {
junit '**/target/surefire-reports/*.xml' withMaven(maven: 'maven', jdk: 'JDK 10') {
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class' sh "${mvn} clean verify -Djava.version=10"
withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} com.gavinmogan:codacy-maven-plugin:coverage " +
"-DcoverageReportFile=target/site/jacoco/jacoco.xml " +
"-DprojectToken=`$JENKINS_HOME/codacy/token` " +
"-DapiToken=`$JENKINS_HOME/codacy/apitoken` " +
"-Dcommit=`git rev-parse HEAD`"
}
}
}
stage('Archiving') {
when { expression { findFiles(glob: '**/target/*.jar').length > 0 } }
steps {
archiveArtifacts '**/target/*.jar'
}
}
stage('Deploy') {
when { expression { (env.GIT_BRANCH == 'master' && env.GIT_URL.startsWith('https://')) } }
steps {
withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} deploy --activate-profiles release -DskipTests=true"
} }
} }
} }
} }
} }
private boolean isReleaseBranch() {
return branchStartsWith('release/')
}
private boolean branchStartsWith(final String branchName) {
startsWith(env.GIT_BRANCH, branchName)
}
private boolean isPublished(final String repo) {
startsWith(env.GIT_URL, repo)
}
private static boolean startsWith(final String value, final String match) {
value != null && value.startsWith(match)
}
private boolean notSnapshot() {
return !(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT")
}