We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb7757c commit 34736a0Copy full SHA for 34736a0
1 file changed
Jenkinsfile
@@ -519,7 +519,7 @@ pipeline {
519
def tests = [:]
520
521
def executors = 10
522
- def tests_per_executor = (changedDistributionTests.size() / executors).setScale(0, /* RoundingMode.CEILING */ 2)
+ def tests_per_executor = Math.ceil((changedDistributionTests.size() / executors).doubleValue())
523
def idx = 0
524
for (f in changedDistributionTests.collate(tests_per_executor)) {
525
idx = idx + 1
0 commit comments