Merge branch 'jenkins' into 'master'
Jenkins See merge request kemitix/mon!32
This commit is contained in:
commit
0b82abeae7
1 changed files with 62 additions and 47 deletions
|
@ -1,75 +1,90 @@
|
||||||
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') {
|
||||||
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} clean compile checkstyle:checkstyle pmd:pmd test"
|
||||||
}
|
|
||||||
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Build') {
|
|
||||||
parallel {
|
|
||||||
stage('Java 8') {
|
|
||||||
steps {
|
|
||||||
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') {
|
|
||||||
sh "${mvn} clean install"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Test Results') {
|
|
||||||
steps {
|
|
||||||
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') {
|
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
||||||
sh "${mvn} com.gavinmogan:codacy-maven-plugin:coverage " +
|
step([$class : 'hudson.plugins.checkstyle.CheckStylePublisher',
|
||||||
"-DcoverageReportFile=target/site/jacoco/jacoco.xml " +
|
pattern : '**/target/checkstyle-result.xml',
|
||||||
"-DprojectToken=`$JENKINS_HOME/codacy/token` " +
|
healthy : '20',
|
||||||
"-DapiToken=`$JENKINS_HOME/codacy/apitoken` " +
|
unHealthy: '100'])
|
||||||
"-Dcommit=`git rev-parse HEAD`"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Archiving') {
|
stage('Verify & Install') {
|
||||||
steps {
|
steps {
|
||||||
archiveArtifacts '**/target/*.jar'
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
||||||
|
sh "${mvn} -DskipTests install"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy') {
|
}
|
||||||
when { expression { (env.GIT_BRANCH == 'master') } }
|
stage('SonarQube (gitlab only)') {
|
||||||
|
when { expression { isPublished() } }
|
||||||
steps {
|
steps {
|
||||||
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') {
|
withSonarQubeEnv('sonarqube') {
|
||||||
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
||||||
|
sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Deploy (release on gitlab)') {
|
||||||
|
when {
|
||||||
|
expression {
|
||||||
|
(branchStartsWith('release/') && isPublished())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
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