Skip to content

Commit 5151c27

Browse files
committed
update to mx 5.219.1
1 parent b4d0fae commit 5151c27

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -916,13 +916,8 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
916916
SUITE.name, dest_suite.name))
917917
assert isinstance(base_suite, mx.SourceSuite)
918918

919-
ci_files = [os.path.join(common_ci_dir, name)
920-
for name in os.listdir(os.path.join(SUITE.dir, common_ci_dir))
921-
if os.path.splitext(name)[-1] in ext]
922-
923-
for common_file in ci_files:
924-
mx.log("CI setup verifying {} ... ".format(common_file))
925-
mx.verify_ci(args, base_suite, dest_suite, common_file=common_file)
919+
ci_files = mx.suite_ci_files(SUITE, common_ci_dir, extension=ext)
920+
mx.verify_ci(args, base_suite, dest_suite, common_file=ci_files)
926921

927922

928923
# ----------------------------------------------------------------------------------------------------------------------

mx.graalpython/suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# METADATA
66
#
77
# --------------------------------------------------------------------------------------------------------------
8-
"mxversion": "5.211.0",
8+
"mxversion": "5.219.1",
99
"name": "graalpython",
1010
"versionConflictResolution": "latest",
1111

0 commit comments

Comments
 (0)