Skip to content

Commit

Permalink
Added '--no-parallel' parameter, because Gradle mangles the output on…
Browse files Browse the repository at this point in the history
… projects with lots of dependencies

Signed-off-by: Roland Asmann <[email protected]>
  • Loading branch information
malice00 committed Sep 13, 2024
1 parent 34e13f1 commit a255781
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -10072,9 +10072,12 @@ export function buildGradleCommandArguments(
gradleSubCommands,
gradleSubCommandArguments,
) {
let allGradleArguments = ["--console", "plain", "--build-cache"].concat(
gradleArguments,
);
let allGradleArguments = [
"--build-cache",
"--console",
"plain",
"--no-parallel",
].concat(gradleArguments);
for (const gradleSubCommand of gradleSubCommands) {
allGradleArguments.push(gradleSubCommand);
allGradleArguments = allGradleArguments.concat(gradleSubCommandArguments);
Expand Down

0 comments on commit a255781

Please sign in to comment.