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
Realized that QueryBatcherJobReportTest fails intermittently due to a known Java Client bug that still needs fixing.
Updated Jenkinsfile to run both 11 and 10 regression tests. Expecting all to pass, except the Optic test that is known to fail sometimes due to a server bug where URIs and properties fragments are sometimes returned.
Copy file name to clipboardExpand all lines: Jenkinsfile
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -117,23 +117,23 @@ 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
-
// }
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'
Copy file name to clipboardExpand all lines: marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/datamovement/functionaltests/QueryBatcherJobReportTest.java
0 commit comments