Skip to content

Commit

Permalink
Testing allowing more stuff to run in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders committed Oct 9, 2023
1 parent 2292406 commit ef0d96a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public StandaloneRestIntegTestTask() {
*/
taskSpec
);
this.setMaxParallelForks(16);
this.getOutputs().upToDateWhen(new NotSpec(taskSpec));
this.getOutputs()
.doNotCacheIf(
Expand Down
2 changes: 1 addition & 1 deletion qa/full-cluster-restart/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ BuildParams.bwcVersions.withIndexCompatible { bwcVersion, baseName ->

tasks.withType(Test).configureEach {
// CI doesn't like it when there's multiple clusters running at once
maxParallelForks = 1
maxParallelForks = 8
}
2 changes: 1 addition & 1 deletion qa/rolling-upgrade/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ BuildParams.bwcVersions.withWireCompatible { bwcVersion, baseName ->

tasks.withType(Test).configureEach {
// CI doesn't like it when there's multiple clusters running at once
maxParallelForks = 1
maxParallelForks = 8
}

0 comments on commit ef0d96a

Please sign in to comment.