jenkins: checkfor SNAPSHOT when pull request into master

This commit is contained in:
Paul Campbell 2018-03-08 18:56:59 +00:00
parent 586546f615
commit 997e08458e

View file

@ -3,17 +3,16 @@ final String mvn = "mvn --batch-mode --update-snapshots"
pipeline {
agent any
stages {
stage('dump environment') {
stage('Environment') {
steps {
sh 'set'
}
}
stage('no SNAPSHOT in master') {
// checks that the pom version is not a snapshot when the current branch is master
// TODO: also check for SNAPSHOT when is a pull request with master as the target branch
// checks that the pom version is not a snapshot when the current or target branch is master
when {
expression {
(env.GIT_BRANCH == 'master') &&
(env.GIT_BRANCH == 'master' || env.CHANGE_TARGET == 'master') &&
(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT") }
}
steps {