@@ -1960,6 +1960,12 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
1960
1960
))
1961
1961
1962
1962
1963
+ standalone_dependencies_common = {
1964
+ 'LLVM Runtime Core' : ('lib/sulong' , []),
1965
+ 'LLVM Runtime Native' : ('lib/sulong' , []),
1966
+ 'LLVM.org toolchain' : ('lib/llvm-toolchain' , []),
1967
+ }
1968
+
1963
1969
mx_sdk .register_graalvm_component (mx_sdk .GraalVmLanguage (
1964
1970
suite = SUITE ,
1965
1971
name = 'GraalVM Python' ,
@@ -1977,12 +1983,14 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
1977
1983
'TRegex' ,
1978
1984
'ICU4J' ,
1979
1985
],
1980
- standalone_dependencies = {
1981
- 'LLVM Runtime Core' : ('lib/sulong' , []),
1982
- 'LLVM Runtime Native' : ('lib/sulong' , []),
1983
- 'LLVM.org toolchain' : ('lib/llvm-toolchain' , []),
1986
+ standalone_dependencies = {** standalone_dependencies_common , ** {
1984
1987
'GraalVM Python license files' : ('' , []),
1985
- },
1988
+ }},
1989
+ standalone_dependencies_enterprise = {** standalone_dependencies_common , ** {
1990
+ 'LLVM Runtime Enterprise' : ('lib/sulong' , []),
1991
+ 'LLVM Runtime Native Enterprise' : ('lib/sulong' , []),
1992
+ 'GraalVM Python license files EE' : ('' , []),
1993
+ }},
1986
1994
truffle_jars = [
1987
1995
'graalpython:GRAALPYTHON' ,
1988
1996
'graalpython:BOUNCYCASTLE-PROVIDER' ,
0 commit comments