Skip to content

Commit 6863f67

Browse files
authored
Allow Gradle to use more heap space (#2847)
During the release process, we are seeing the message "Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)" which seemingly can be caused by OOMs
1 parent 6bd90e9 commit 6863f67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/nom_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class GradleFlag:
5656
# nom_build), run ./nom_build --help.
5757
#
5858
# DO NOT EDIT THIS FILE BY HAND
59-
org.gradle.jvmargs=-Xmx1024m
59+
org.gradle.jvmargs=-Xmx2048m
6060
org.gradle.caching=true
6161
org.gradle.parallel=true
6262
"""

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# nom_build), run ./nom_build --help.
88
#
99
# DO NOT EDIT THIS FILE BY HAND
10-
org.gradle.jvmargs=-Xmx1024m
10+
org.gradle.jvmargs=-Xmx2048m
1111
org.gradle.caching=true
1212
org.gradle.parallel=true
1313
mavenUrl=

0 commit comments

Comments
 (0)