mon/Jenkinsfile.groovy

51 lines
1.6 KiB
Groovy
Raw Normal View History

2018-03-01 19:41:28 +00:00
final String gitRepoUrl = 'git@github.com:kemitix/mon.git'
final String mvn = "mvn --batch-mode --update-snapshots"
pipeline {
agent any
stages {
stage('Prepare') {
steps {
git url: gitRepoUrl, branch: '**', credentialsId: 'github-kemitix'
}
}
stage('no SNAPSHOT in master') {
// checks that the pom version is not a snapshot when the current branch is master
2018-03-03 09:03:35 +00:00
// TODO: also check for SNAPSHOT when is a pull request with master as the target branch
when {
expression {
(env.GIT_BRANCH == '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-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
}
}
}
}
}
stage('Reporting') {
steps {
junit '**/target/surefire-reports/*.xml'
archiveArtifacts '**/target/*.jar'
}
}
stage('Deploy') {
when { expression { (env.GIT_BRANCH == 'master') } }
steps {
withMaven(maven: 'maven 3.5.2', jdk: 'JDK 1.8') {
sh "${mvn} deploy --activate-profiles release -DskipTests=true"
}
}
}
}
}