You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Jenkinsfile
+21-21Lines changed: 21 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -117,40 +117,40 @@ pipeline{
117
117
}
118
118
}
119
119
120
-
stage('regressions-11.0-Latest') {
121
-
when {
122
-
allOf {
123
-
branch 'develop'
124
-
expression {return params.regressions}
125
-
}
126
-
}
127
-
steps {
128
-
runtests('Latest','11.0')
129
-
junit '**/build/**/TEST*.xml'
130
-
}
131
-
post {
132
-
unsuccessful {
133
-
sendMail params.Email,'<h3>Some Tests Failed on Released 11.0 ML Nightly Server Single Node </h3><h4><a href=${JENKINS_URL}/blue/organizations/jenkins/java-client-api-regression/detail/$JOB_BASE_NAME/$BUILD_ID/tests><font color=red>Check the Test Report</font></a></h4><h4><a href=${RUN_DISPLAY_URL}>Check the Pipeline View</a></h4><h4> <a href=${BUILD_URL}/console> Check Console Output Here</a></h4><h4>Please create bugs for the failed regressions and fix them</h4>',false,'${STAGE_NAME} on develop against ML 11.0-nightly Failed'
134
-
}
135
-
}
136
-
}
137
-
138
-
// stage('regressions-10.0-9') {
120
+
// stage('regressions-11.0-Latest') {
139
121
// when {
140
122
// allOf {
141
123
// branch 'develop'
142
124
// expression {return params.regressions}
143
125
// }
144
126
// }
145
127
// steps {
146
-
// runtests('Release','10.0-9.5')
128
+
// runtests('Latest','11.0')
147
129
// junit '**/build/**/TEST*.xml'
148
130
// }
149
131
// post {
150
132
// unsuccessful {
151
-
// sendMail params.Email,'<h3>Some Tests Failed on Released 10.0-9.5 ML Server Single Node </h3><h4><a href=${JENKINS_URL}/blue/organizations/jenkins/java-client-api-regression/detail/$JOB_BASE_NAME/$BUILD_ID/tests><font color=red>Check the Test Report</font></a></h4><h4><a href=${RUN_DISPLAY_URL}>Check the Pipeline View</a></h4><h4> <a href=${BUILD_URL}/console> Check Console Output Here</a></h4><h4>Please create bugs for the failed regressions and fix them</h4>',false,'${STAGE_NAME} on develop against ML 10.0-9.5 Failed'
133
+
// sendMail params.Email,'<h3>Some Tests Failed on Released 11.0 ML Nightly Server Single Node </h3><h4><a href=${JENKINS_URL}/blue/organizations/jenkins/java-client-api-regression/detail/$JOB_BASE_NAME/$BUILD_ID/tests><font color=red>Check the Test Report</font></a></h4><h4><a href=${RUN_DISPLAY_URL}>Check the Pipeline View</a></h4><h4> <a href=${BUILD_URL}/console> Check Console Output Here</a></h4><h4>Please create bugs for the failed regressions and fix them</h4>',false,'${STAGE_NAME} on develop against ML 11.0-nightly Failed'
152
134
// }
153
135
// }
154
136
// }
137
+
138
+
stage('regressions-10.0-9') {
139
+
when {
140
+
allOf {
141
+
branch 'develop'
142
+
expression {return params.regressions}
143
+
}
144
+
}
145
+
steps {
146
+
runtests('Release','10.0-9.5')
147
+
junit '**/build/**/TEST*.xml'
148
+
}
149
+
post {
150
+
unsuccessful {
151
+
sendMail params.Email,'<h3>Some Tests Failed on Released 10.0-9.5 ML Server Single Node </h3><h4><a href=${JENKINS_URL}/blue/organizations/jenkins/java-client-api-regression/detail/$JOB_BASE_NAME/$BUILD_ID/tests><font color=red>Check the Test Report</font></a></h4><h4><a href=${RUN_DISPLAY_URL}>Check the Pipeline View</a></h4><h4> <a href=${BUILD_URL}/console> Check Console Output Here</a></h4><h4>Please create bugs for the failed regressions and fix them</h4>',false,'${STAGE_NAME} on develop against ML 10.0-9.5 Failed'
0 commit comments