Skip to content

Commit cb7757c

Browse files
committed
Fix rounding
1 parent 5132fa8 commit cb7757c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ pipeline {
519519
def tests = [:]
520520

521521
def executors = 10
522-
def tests_per_executor = (changedDistributionTests.size() / executors).setScale(0, RoundingMode.CEILING)
522+
def tests_per_executor = (changedDistributionTests.size() / executors).setScale(0, /* RoundingMode.CEILING */ 2)
523523
def idx = 0
524524
for (f in changedDistributionTests.collate(tests_per_executor)) {
525525
idx = idx + 1

0 commit comments

Comments
 (0)