#205 - Enable Jenkins for 1.0.x branch.

This commit is contained in:
Mark Paluch
2019-12-09 09:39:19 +01:00
parent 5bbc6b066c
commit 54b1ed0ba9

4
Jenkinsfile vendored
View File

@@ -15,7 +15,7 @@ pipeline {
stage("Test") {
when {
anyOf {
branch 'master'
branch '1.0.x'
not { triggeredBy 'UpstreamCause' }
}
}
@@ -42,7 +42,7 @@ pipeline {
stage('Release to artifactory') {
when {
anyOf {
branch 'master'
branch '1.0.x'
not { triggeredBy 'UpstreamCause' }
}
}