Skip to content

Commit 0df91d5

Browse files
committed
Rm debugs, fix github_ci_build_args not used
1 parent 9d17178 commit 0df91d5

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/ci-unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Run CI unittests
22
on:
33
pull_request:
4-
types: [opened, ready_for_review, synchronize, ]
4+
types: [opened, ready_for_review, synchronize]
55
workflow_dispatch:
66

77
jobs:

graalpython/com.oracle.graal.python.test/src/runner.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,6 @@ def __str__(self):
12531253
s += self.test_id.test_name
12541254
if self.keys:
12551255
s += f' @ {",".join(sorted(self.get_keys_as_str()))}'
1256-
print(f"s is {s}")
12571256
if self.comment:
12581257
s = f'{self.comment}{s}'
12591258
return s

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def libpythonvm_build_args():
275275
build_args += bytecode_dsl_build_args()
276276

277277
if os.environ.get("GITHUB_CI"):
278-
build_args += ["-Ob", "-J-XX:MaxRAMPercentage=90.0"]
278+
build_args += github_ci_build_args()
279279

280280
if graalos := ("musl" in mx_subst.path_substitutions.substitute("<multitarget_libc_selection>")):
281281
build_args += ['-H:+GraalOS']
@@ -849,7 +849,6 @@ def graalpy_standalone_home(standalone_type, enterprise=False, dev=False, build=
849849

850850
mx_args = ['-p', SUITE.dir, *(['--env', env_file] if env_file else [])]
851851

852-
print(f"[DEBUG] GITHUB_CI env: {os.environ.get('GITHUB_CI')}")
853852
if GITHUB_CI:
854853
mx_args.append("--extra-image-builder-argument=-Ob")
855854
else:

0 commit comments

Comments
 (0)