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 54f13eb commit 5132fa8Copy full SHA for 5132fa8
1 file changed
Jenkinsfile
@@ -519,7 +519,7 @@ pipeline {
519
def tests = [:]
520
521
def executors = 10
522
- def tests_per_executor = Math.ceil(changedDistributionTests.size() / executors)
+ def tests_per_executor = (changedDistributionTests.size() / executors).setScale(0, RoundingMode.CEILING)
523
def idx = 0
524
for (f in changedDistributionTests.collate(tests_per_executor)) {
525
idx = idx + 1
0 commit comments