gitdb/Jenkinsfile.groovy

92 lines
2.9 KiB
Groovy
Raw Normal View History

2018-07-21 07:52:37 +01:00
final String publicRepo = 'https://github.com/kemitix/'
2018-05-31 20:48:43 +01:00
final String mvn = "mvn --batch-mode --update-snapshots --errors"
pipeline {
agent any
stages {
stage('Build & Test') {
steps {
2018-07-21 07:52:37 +01:00
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
2018-05-31 20:48:43 +01:00
sh "${mvn} clean compile checkstyle:checkstyle pmd:pmd test"
2018-07-21 07:52:37 +01:00
// PMD to Jenkins
2018-05-31 20:48:43 +01:00
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
2018-08-30 22:32:11 +01:00
}
}
}
stage('Report Coverage') {
steps {
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
// Code Coverage to Jenkins
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
}
}
}
stage('Report Checkstyle') {
steps {
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
2018-07-21 07:52:37 +01:00
// Checkstyle to Jenkins
2018-08-30 22:32:11 +01:00
step([$class: 'hudson.plugins.checkstyle.CheckStylePublisher',
pattern: '**/target/checkstyle-result.xml',
healthy:'20',
unHealthy:'100'])
2018-05-31 20:48:43 +01:00
}
}
}
stage('Verify & Install') {
steps {
2018-07-21 07:52:37 +01:00
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
2018-05-31 20:48:43 +01:00
sh "${mvn} -DskipTests install"
}
}
}
2018-07-21 07:52:37 +01:00
stage('Deploy (published release branch)') {
when {
expression {
2018-07-21 07:52:37 +01:00
(isReleaseBranch() &&
isPublished(publicRepo) &&
notSnapshot())
}
2018-05-31 20:48:43 +01:00
}
steps {
2018-07-21 07:52:37 +01:00
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
sh "${mvn} --activate-profiles release deploy"
2018-05-31 20:48:43 +01:00
}
}
}
// stage('Build Java 11') {
// steps {
// withMaven(maven: 'maven', jdk: 'JDK 11') {
// sh "${mvn} clean verify -Djava.version=11"
// }
// }
// }
// stage('Build Java 12') {
// steps {
// withMaven(maven: 'maven', jdk: 'JDK 12') {
// sh "${mvn} clean verify -Djava.version=12"
// }
// }
// }
2018-05-31 20:48:43 +01:00
}
}
2018-07-21 07:52:37 +01:00
private boolean isReleaseBranch() {
return branchStartsWith('release/')
}
private boolean branchStartsWith(final String branchName) {
startsWith(env.GIT_BRANCH, branchName)
}
2018-07-21 07:52:37 +01:00
private boolean isPublished(final String repo) {
startsWith(env.GIT_URL, repo)
}
2018-07-21 07:52:37 +01:00
private static boolean startsWith(final String value, final String match) {
value != null && value.startsWith(match)
}
2018-07-21 07:52:37 +01:00
private boolean notSnapshot() {
return !(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT")
}