conditional/Jenkinsfile.groovy

88 lines
3.3 KiB
Groovy
Raw Normal View History

2018-03-04 16:28:12 +00:00
final String mvn = "mvn --batch-mode --update-snapshots"
pipeline {
agent any
stages {
2018-03-13 18:34:15 +00:00
stage('Environment') {
steps {
sh 'set'
}
}
2018-03-04 16:28:12 +00:00
stage('no SNAPSHOT in master') {
2018-03-13 18:34:15 +00:00
// checks that the pom version is not a snapshot when the current or target branch is master
2018-03-04 16:28:12 +00:00
when {
expression {
2018-03-13 18:34:15 +00:00
(env.GIT_BRANCH == 'master' || env.CHANGE_TARGET == 'master') &&
(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT")
}
2018-03-04 16:28:12 +00:00
}
steps {
error("Build failed because SNAPSHOT version")
}
}
stage('Static Code Analysis') {
2018-03-13 18:34:15 +00:00
when { expression { findFiles(glob: '**/src/main/java/**/*.java').length > 0 } }
steps {
2018-03-13 18:34:15 +00:00
withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} compile"
sh "${mvn} checkstyle:checkstyle"
sh "${mvn} pmd:pmd"
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
}
}
}
2018-03-13 18:34:15 +00:00
stage('SonarQube (develop only)') {
when { expression { env.GIT_BRANCH == 'develop' && env.GIT_URL.startsWith('https://') } }
steps {
withSonarQubeEnv('sonarqube') {
withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar"
2018-03-04 16:28:12 +00:00
}
}
2018-03-13 18:34:15 +00:00
}
}
stage('Build Java Next') {
steps {
withMaven(maven: 'maven', jdk: 'JDK Next') {
sh "${mvn} clean install -Djava.version=9"
}
}
}
stage('Build Java LTS') {
steps {
withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} clean install"
2018-03-04 16:28:12 +00:00
}
}
}
stage('Test Results') {
2018-03-13 18:34:15 +00:00
when { expression { findFiles(glob: '**/target/surefire-reports/*.xml').length > 0 } }
2018-03-04 16:28:12 +00:00
steps {
junit '**/target/surefire-reports/*.xml'
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
2018-03-13 18:34:15 +00:00
withMaven(maven: 'maven', jdk: 'JDK LTS') {
2018-03-06 22:21:24 +00:00
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`"
}
2018-03-04 16:28:12 +00:00
}
}
stage('Archiving') {
2018-03-13 18:34:15 +00:00
when { expression { findFiles(glob: '**/target/*.jar').length > 0 } }
2018-03-04 16:28:12 +00:00
steps {
archiveArtifacts '**/target/*.jar'
}
}
stage('Deploy') {
2018-03-13 18:34:15 +00:00
when { expression { (env.GIT_BRANCH == 'master' && env.GIT_URL.startsWith('https://')) } }
2018-03-04 16:28:12 +00:00
steps {
2018-03-13 18:34:15 +00:00
withMaven(maven: 'maven', jdk: 'JDK LTS') {
2018-03-04 16:28:12 +00:00
sh "${mvn} deploy --activate-profiles release -DskipTests=true"
}
}
}
}
}