File tree Expand file tree Collapse file tree 1 file changed +7
-13
lines changed Expand file tree Collapse file tree 1 file changed +7
-13
lines changed Original file line number Diff line number Diff line change 6
6
local bench = (import '../ci_common/benchmark-suites.libsonnet' ),
7
7
local hw = bc.bench_hw,
8
8
9
- local hotspot_amd64_builds = [
10
- c.weekly + hw.e3 + jdk + cc.c2 + suite
9
+ local hotspot_builds = std.flattenArrays ([
10
+ [
11
+ c.weekly + hw.e3 + jdk + cc.c2 + suite,
12
+ c.weekly + hw.a12c + jdk + cc.c2 + suite
13
+ ]
11
14
for jdk in cc.jdks_of_interest
12
15
for suite in bench.groups.all_suites
13
- ],
14
-
15
- local hotspot_aarch64_builds = [
16
- c.weekly + hw.a12c + jdk + cc.c2 + suite
17
- for jdk in cc.jdks_of_interest
18
- for suite in bench.groups.main_suites
19
- ] + [
20
- c.monthly + hw.a12c + jdk + cc.c2 + bench.specjbb2015,
21
- for jdk in cc.product_jdks
22
- ],
16
+ ]),
23
17
24
18
local hotspot_profiling_builds = std.flattenArrays ([
25
19
[
73
67
]
74
68
for jdk in cc.product_jdks
75
69
]),
76
- local all_builds = hotspot_amd64_builds + hotspot_aarch64_builds + hotspot_profiling_builds +
70
+ local all_builds = hotspot_builds + hotspot_profiling_builds +
77
71
weekly_forks_amd64_builds + weekly_forks_aarch64_builds + economy_builds + no_tiered_builds + gc_variants_builds,
78
72
local filtered_builds = [b for b in all_builds if b.is_jdk_supported(b.jdk_version) && b.is_arch_supported(b.arch)],
79
73
You can’t perform that action at this time.
0 commit comments