Skip to content

Commit fe5d97d

Browse files
MLE-12371: Adding stage to run tests on 10.0 nightly
1 parent 8fffcf6 commit fe5d97d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Jenkinsfile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,29 @@ pipeline{
230230
junit '**/build/**/TEST*.xml'
231231
}
232232
}
233+
stage('regressions-10.0') {
234+
when {
235+
allOf {
236+
branch 'develop'
237+
expression {return params.regressions}
238+
}
239+
}
240+
steps {
241+
runAllTests('Latest', '10.0', false)
242+
junit '**/build/**/TEST*.xml'
243+
}
244+
}
245+
stage('regressions-11.1.0') {
246+
when {
247+
allOf {
248+
branch 'develop'
249+
expression {return params.regressions}
250+
}
251+
}
252+
steps {
253+
runAllTests('Release', '11.1.0', false)
254+
junit '**/build/**/TEST*.xml'
255+
}
256+
}
233257
}
234258
}

0 commit comments

Comments
 (0)