From 0514b17303f2f5fd9f38283fa471b5e36c937dd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Mon, 2 Oct 2023 01:52:13 -0600 Subject: [PATCH] try 4g max heap --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index e4a533f8c..e02f3d3cc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,7 +20,7 @@ allprojects { tasks.withType().configureEach { useJUnitPlatform() - maxHeapSize = "2G" + maxHeapSize = "4G" ignoreFailures = false failFast = true maxParallelForks = (Runtime.getRuntime().availableProcessors() - 1).takeIf { it > 0 } ?: 1