Skip to content

Commit 20464ee

Browse files
build: execute tests in parallel
1 parent 27d0d8e commit 20464ee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,7 @@ tasks.withType<KotlinCompile> {
159159
apiValidation {
160160
ignoredClasses.add("de.itemis.mps.gradle.Common_gradle")
161161
}
162+
163+
tasks.test {
164+
maxParallelForks = (Runtime.getRuntime().availableProcessors() * 2 / 3).coerceAtLeast(1)
165+
}

0 commit comments

Comments
 (0)