Updating max parallel forks
Reducing the amount of maximum parallel forks to avoid memory problems with circleci
This commit is contained in:
@@ -54,7 +54,7 @@ bootJar {
|
||||
}
|
||||
|
||||
test {
|
||||
maxParallelForks = Runtime.runtime.availableProcessors() - 1 ?: 1
|
||||
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
||||
|
||||
// Only run the tests if acceptanceTests is specified
|
||||
onlyIf {
|
||||
|
||||
Reference in New Issue
Block a user