Skip to content

Commit 31d2175

Browse files
committed
[GR-48456] Add platforms to generated isolate library layout distributions.
PullRequest: js/2918
2 parents c7bea5e + fa7fba7 commit 31d2175

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Jsonnet files should not include this file directly but use ci/common.jsonnet instead."
55
],
66

7-
"mx_version": "6.45.0",
7+
"mx_version": "6.46.1",
88

99
"COMMENT.jdks": "When adding or removing JDKs keep in sync with JDKs in ci/common.jsonnet",
1010
"jdks": {

graal-js/mx.graal-js/mx_graal_js.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,16 @@ def mx_register_dynamic_suite_constituents(register_project, register_distributi
446446
'-H:ReservedAuxiliaryImageBytes=2145482548',
447447
] if not mx.is_windows() else [],
448448
language='js',
449-
isolate_library_layout_distribution='JS_ISOLATE_LAYOUT'
449+
isolate_library_layout_distribution={
450+
'name': 'JS_ISOLATE_LAYOUT',
451+
'platforms': [
452+
'linux-amd64',
453+
'linux-aarch64',
454+
'darwin-amd64',
455+
'darwin-aarch64',
456+
'windows-amd64',
457+
],
458+
},
450459
)
451460
],
452461
boot_jars=[],

graal-js/mx.graal-js/suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
{
2525
"name" : "regex",
2626
"subdir" : True,
27-
"version" : "c852ac898d74b897a4f4b875631ed0b280dc88ab",
27+
"version" : "f795ef233f3e325aab46db7241f367b6c88de1b0",
2828
"urls" : [
2929
{"url" : "https://github.com/oracle/graal.git", "kind" : "git"},
3030
]

0 commit comments

Comments
 (0)