Skip to content

Commit ad2cd3e

Browse files
committed
Ensure we build bytecode dsl images for relevant benchmarks
1 parent 138c857 commit ad2cd3e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

ci.jsonnet

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -392,12 +392,16 @@
392392
} + {
393393
[bench]: bench_task(bench) + platform_spec(no_jobs) + bench_variants({
394394
"vm_name:graalvm_ee_default_interpreter" : {"linux:amd64:jdk-latest" : post_merge + t("02:00:00")},
395-
"vm_name:graalvm_ee_default_interpreter_bc_dsl" : {"linux:amd64:jdk-latest" : post_merge + t("02:00:00")},
396395
"vm_name:graalpython_enterprise_interpreter" : {"linux:amd64:jdk-latest" : weekly + t("02:00:00")},
397-
"vm_name:graalpython_enterprise_interpreter_bc_dsl" : {"linux:amd64:jdk-latest" : weekly + t("02:00:00")},
398396
"vm_name:cpython" : {"linux:amd64:jdk-latest" : weekly + t("01:00:00")},
399397
}),
400398
for bench in ["heap", "micro_small_heap", "micro_native_heap"]
399+
} + {
400+
[bench + "-bytecode-dsl"]: bench_task(bench) + bytecode_dsl_bench + platform_spec(no_jobs) + bench_variants({
401+
"vm_name:graalvm_ee_default_interpreter_bc_dsl" : {"linux:amd64:jdk-latest" : post_merge + t("02:00:00")},
402+
"vm_name:graalpython_enterprise_interpreter_bc_dsl" : {"linux:amd64:jdk-latest" : weekly + t("02:00:00")},
403+
}),
404+
for bench in ["heap", "micro_small_heap", "micro_native_heap"]
401405
} + {
402406
// interop benchmarks only for graalpython, weekly is enough
403407
[bench]: bench_task(bench) + platform_spec(no_jobs) + bench_variants({
@@ -425,7 +429,7 @@
425429
for bench in ["pyperformance"]
426430
} + {
427431
// Bytecode DSL benchmarks with community benchmark suites for external numbers
428-
[bench + "-bytecode-dsl"]: bench_task(bench, PY_BENCHMARKS) + platform_spec(no_jobs) + raw_results + bench_variants({
432+
[bench + "-bytecode-dsl"]: bench_task(bench, PY_BENCHMARKS) + bytecode_dsl_bench + platform_spec(no_jobs) + raw_results + bench_variants({
429433
"vm_name:graalvm_ee_default_bc_dsl" : {"linux:amd64:jdk-latest" : weekly + t("08:00:00")},
430434
}),
431435
for bench in ["pyperformance"]

0 commit comments

Comments
 (0)