Skip to content

Commit

Permalink
build: execute tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
sergej-koscejev committed Jun 26, 2024
1 parent 27d0d8e commit 20464ee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,7 @@ tasks.withType<KotlinCompile> {
apiValidation {
ignoredClasses.add("de.itemis.mps.gradle.Common_gradle")
}

tasks.test {
maxParallelForks = (Runtime.getRuntime().availableProcessors() * 2 / 3).coerceAtLeast(1)
}

0 comments on commit 20464ee

Please sign in to comment.