@@ -195,10 +195,10 @@ local evaluate_late(key, object) = task_spec(run_spec.evaluate_late({key:object}
195
195
},
196
196
} else {})),
197
197
198
- local deploy_graalvm_espresso(with_g1=false ) = svm_common + common_os_deploy + espresso_name + task_spec({
198
+ local deploy_graalvm_espresso(major_version, with_g1=false ) = svm_common + common_os_deploy + espresso_name + task_spec({
199
199
notify_groups:: ['deploy' ],
200
200
}) + build_base_graalvm_image(with_profiles=false ) + task_spec({
201
- espresso_standalone_dist:: (if vm.edition == 'ce' then 'GRAALVM_ESPRESSO_COMMUNITY_JAVA21' else 'GRAALVM_ESPRESSO_JAVA21' ) +
201
+ espresso_standalone_dist:: (if vm.edition == 'ce' then 'GRAALVM_ESPRESSO_COMMUNITY_JAVA' + major_version else 'GRAALVM_ESPRESSO_JAVA' + major_version ) +
202
202
(if with_g1 then '_G1' else '' ),
203
203
mx_vm_espresso:: vm.mx_cmd_base_no_env + ['--env' , self .mx_env_espresso] + self .mx_vm_cmd_suffix,
204
204
run +: (if with_g1 then [['set-export' , 'ESPRESSO_DELIVERABLE_VARIANT' , 'G1' ]] else []) + [
@@ -216,7 +216,7 @@ local evaluate_late(key, object) = task_spec(run_spec.evaluate_late({key:object}
216
216
# Deploy it to the artifact server
217
217
self .mx_vm_espresso + deploy_artifacts(self .os, suite='espresso' , tags=['standalone' ]),
218
218
],
219
- }) + timelimit('1:45:00' ),
219
+ }) + timelimit(
'1:45:00' )
+ notify_emails( '[email protected] ' ) ,
220
220
221
221
local deploy_vm_base_task_dict = {
222
222
#
@@ -236,15 +236,15 @@ local evaluate_late(key, object) = task_spec(run_spec.evaluate_late({key:object}
236
236
#
237
237
# Deploy the GraalVM Espresso standalones
238
238
#
239
- "vm-espresso" : mx_env + deploy_graalvm_espresso() + espresso_java_home(25 ) + default_os_arch_jdk_mixin + platform_spec(no_jobs) + (
239
+ "vm-espresso" : mx_env + deploy_graalvm_espresso(25 ) + espresso_java_home(25 ) + default_os_arch_jdk_mixin + platform_spec(no_jobs) + (
240
240
if vm.deploy_espress_standalone then platform_spec({
241
241
"linux:amd64:jdk-latest" : daily,
242
242
"linux:aarch64:jdk-latest" : weekly,
243
243
"darwin:amd64:jdk-latest" : weekly + capabilities('darwin_bigsur' ),
244
244
"darwin:aarch64:jdk-latest" : weekly + capabilities('darwin_bigsur' ),
245
245
"windows:amd64:jdk-latest" : weekly,
246
246
}) else {}),
247
- "vm-espresso-g1" : mx_env + deploy_graalvm_espresso(with_g1=true ) + espresso_java_home(25 ) + default_os_arch_jdk_mixin + platform_spec(no_jobs) + (
247
+ "vm-espresso-g1" : mx_env + deploy_graalvm_espresso(25 , with_g1=true ) + espresso_java_home(25 ) + default_os_arch_jdk_mixin + platform_spec(no_jobs) + (
248
248
if vm.deploy_espress_standalone && vm.edition == 'ee' then platform_spec({
249
249
"linux:amd64:jdk-latest" : daily,
250
250
"linux:aarch64:jdk-latest" : weekly,
0 commit comments