mon/Jenkinsfile.groovy

76 lines
2.7 KiB
Groovy
Raw Normal View History

2018-03-01 19:41:28 +00:00
final String mvn = "mvn --batch-mode --update-snapshots"
pipeline {
agent any
stages {
stage('Environment') {
2018-03-08 18:51:13 +00:00
steps {
sh 'set'
}
}
stage('no SNAPSHOT in master') {
// checks that the pom version is not a snapshot when the current or target branch is master
2018-03-03 09:03:35 +00:00
when {
expression {
(env.GIT_BRANCH == 'master' || env.CHANGE_TARGET == 'master') &&
2018-03-03 11:55:44 +00:00
(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT") }
}
2018-03-03 12:47:49 +00:00
steps {
error("Build failed because SNAPSHOT version")
}
}
2018-03-08 18:15:55 +00:00
stage('Static Code Analysis') {
steps {
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') {
sh "${mvn} compile checkstyle:checkstyle pmd:pmd"
}
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
}
}
2018-03-01 19:41:28 +00:00
stage('Build') {
parallel {
stage('Java 8') {
steps {
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') {
2018-03-03 12:41:28 +00:00
sh "${mvn} clean install"
2018-03-01 19:41:28 +00:00
}
}
}
2018-03-02 23:33:18 +00:00
stage('Java 9') {
steps {
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 9') {
2018-03-08 18:15:55 +00:00
sh "${mvn} clean install"
2018-03-02 23:33:18 +00:00
}
}
}
2018-03-01 19:41:28 +00:00
}
}
stage('Test Results') {
2018-03-01 19:41:28 +00:00
steps {
junit '**/target/surefire-reports/*.xml'
2018-03-08 18:15:55 +00:00
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') {
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') {
steps {
2018-03-01 19:41:28 +00:00
archiveArtifacts '**/target/*.jar'
}
}
stage('Deploy') {
when { expression { (env.GIT_BRANCH == 'master') } }
steps {
2018-03-08 18:15:55 +00:00
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') {
2018-03-01 19:41:28 +00:00
sh "${mvn} deploy --activate-profiles release -DskipTests=true"
}
}
}
}
}