Skip to content

Commit a70163a

Browse files
[GR-41877] [GR-42214] Fix support status.
PullRequest: graal/14198
2 parents 9b42ff9 + 9e1b66f commit a70163a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

sdk/mx.sdk/mx_sdk_vm_impl.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2427,17 +2427,13 @@ def _format_properties(data):
24272427

24282428

24292429
def _get_component_stability(component):
2430-
if _src_jdk_version not in (11, 17):
2431-
return "experimental"
2432-
if mx.is_darwin() and mx.get_arch() == 'aarch64':
2430+
if _src_jdk_version not in (17, 20):
24332431
return "experimental"
24342432
return component.stability
24352433

24362434

24372435
def _get_core_stability():
2438-
if _src_jdk_version not in (11, 17):
2439-
return "experimental"
2440-
if mx.is_darwin() and mx.get_arch() == 'aarch64':
2436+
if _src_jdk_version not in (17, 20):
24412437
return "experimental"
24422438
return "supported"
24432439

0 commit comments

Comments
 (0)