Skip to content

Commit 19ae9cf

Browse files
committed
Add -J-XX:MaxRAMPercentage=90.0 on graalpy native / libpythonvm builds
1 parent 1e1aa99 commit 19ae9cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
local GRAAL_JDK_LATEST = "graal-jdk-latest",
102102
local TAGGED_UNITTESTS_SPLIT = 8,
103103
local COVERAGE_SPLIT = 3,
104-
local RETAGGER_SPLIT = 16,
104+
local RETAGGER_SPLIT = 8,
105105

106106
// -----------------------------------------------------------------------------------------------------------------
107107
// gates

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def libpythonvm_build_args():
255255
build_args += bytecode_dsl_build_args()
256256

257257
if os.environ.get("GITHUB_CI"):
258-
build_args += ["-Ob"]
258+
build_args += ["-Ob", "-J-XX:MaxRAMPercentage=90.0"]
259259

260260
if graalos := ("musl" in mx_subst.path_substitutions.substitute("<multitarget_libc_selection>")):
261261
build_args += ['-H:+GraalOS']

0 commit comments

Comments
 (0)