We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df94214 commit 8ce8a83Copy full SHA for 8ce8a83
Jenkinsfile
@@ -49,6 +49,12 @@ pipeline {
49
}
50
51
stage("test: baseline") {
52
+ when {
53
+ anyOf {
54
+ branch 'master'
55
+ not { triggeredBy 'UpstreamCause' }
56
+ }
57
58
agent {
59
docker {
60
image 'springci/spring-data-openjdk8-with-mongodb-4.0:latest'
@@ -68,6 +74,12 @@ pipeline {
68
74
69
75
70
76
stage("Test other configurations") {
77
78
79
80
81
82
71
83
parallel {
72
84
stage("test: mongodb 4.1") {
73
85
@@ -94,6 +106,7 @@ pipeline {
94
106
stage('Release to artifactory') {
95
107
when {
96
108
branch 'issue/*'
109
97
110
98
111
99
112
0 commit comments