jenkins: update to master/release branch model
This commit is contained in:
parent
ca46ee0d0f
commit
672e537153
1 changed files with 54 additions and 51 deletions
|
@ -1,38 +1,43 @@
|
||||||
final String mvn = "mvn --batch-mode --update-snapshots"
|
final String mvn = "mvn --batch-mode --update-snapshots --errors"
|
||||||
|
final dependenciesSupportJDK = 9
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage('Environment') {
|
stage('release != SNAPSHOT') {
|
||||||
steps {
|
// checks that the pom version is not a SNAPSHOT when the current branch is a release
|
||||||
sh 'set'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('no SNAPSHOT in master') {
|
|
||||||
// checks that the pom version is not a snapshot when the current or target branch is master
|
|
||||||
when {
|
when {
|
||||||
expression {
|
expression {
|
||||||
(env.GIT_BRANCH == 'master' || env.CHANGE_TARGET == 'master') &&
|
(branchStartsWith('release/')) &&
|
||||||
(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: [" + env.GIT_BRANCH + "]")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Static Code Analysis') {
|
stage('Build & Test') {
|
||||||
when { expression { findFiles(glob: '**/src/main/java/**/*.java').length > 0 } }
|
|
||||||
steps {
|
steps {
|
||||||
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
||||||
sh "${mvn} compile"
|
sh "${mvn} clean compile checkstyle:checkstyle pmd:pmd test"
|
||||||
sh "${mvn} checkstyle:checkstyle"
|
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
|
||||||
sh "${mvn} pmd:pmd"
|
|
||||||
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
||||||
|
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 LTS') {
|
||||||
|
sh "${mvn} -DskipTests install"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('SonarQube (gitlab only)') {
|
||||||
|
when { expression { isPublished() } }
|
||||||
steps {
|
steps {
|
||||||
withSonarQubeEnv('sonarqube') {
|
withSonarQubeEnv('sonarqube') {
|
||||||
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
||||||
|
@ -41,47 +46,45 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build Java Next') {
|
stage('Deploy (release on gitlab)') {
|
||||||
steps {
|
when {
|
||||||
withMaven(maven: 'maven', jdk: 'JDK Next') {
|
expression {
|
||||||
sh "${mvn} clean install -Djava.version=9"
|
(branchStartsWith('release/') && isPublished())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
stage('Build Java LTS') {
|
|
||||||
steps {
|
|
||||||
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
|
||||||
sh "${mvn} clean install"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Test Results') {
|
|
||||||
when { expression { findFiles(glob: '**/target/surefire-reports/*.xml').length > 0 } }
|
|
||||||
steps {
|
|
||||||
junit '**/target/surefire-reports/*.xml'
|
|
||||||
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
|
|
||||||
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 {
|
steps {
|
||||||
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
||||||
sh "${mvn} deploy --activate-profiles release -DskipTests=true"
|
sh "${mvn} deploy --activate-profiles release -DskipTests=true"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('Build Java 9') {
|
||||||
|
when { expression { dependenciesSupportJDK >= 9 } }
|
||||||
|
steps {
|
||||||
|
withMaven(maven: 'maven', jdk: 'JDK 9') {
|
||||||
|
sh "${mvn} clean verify -Djava.version=9"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
stage('Build Java 10') {
|
||||||
|
when { expression { dependenciesSupportJDK >= 10 } }
|
||||||
|
steps {
|
||||||
|
withMaven(maven: 'maven', jdk: 'JDK 10') {
|
||||||
|
sh "${mvn} clean verify -Djava.version=10"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean branchStartsWith(String branchName) {
|
||||||
|
startsWith(env.GIT_BRANCH, branchName)
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isPublished() {
|
||||||
|
startsWith(env.GIT_URL, 'https://')
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean startsWith(String value, String match) {
|
||||||
|
value != null && value.startsWith(match)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue