From 07b962f31a40f505f2ff981bd8291a82a0453826 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Fri, 11 May 2018 14:30:36 -0400 Subject: [PATCH] Bump Gradle heap to 2 GB (#30535) We are still seeing rare failures with the Gradle heap set to 1792m, especially on machines with high core count. Given it appears we are close to the needed threshold, this commit bumps the heap one more time to 2 GB. --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index a8a309f1067..08b03629ad5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ org.gradle.daemon=false -org.gradle.jvmargs=-Xmx1792m +org.gradle.jvmargs=-Xmx2g