diff --git a/compiler/ci/ci_common/benchmark-builders.jsonnet b/compiler/ci/ci_common/benchmark-builders.jsonnet index ba519fb2a6e2..2a16e6cacd30 100644 --- a/compiler/ci/ci_common/benchmark-builders.jsonnet +++ b/compiler/ci/ci_common/benchmark-builders.jsonnet @@ -74,20 +74,7 @@ for suite in bench.groups.main_suites ], - local no_tiered_builds = [ - c.monthly + hw.e3 + jdk + cc.libgraal + cc.no_tiered_comp + suite, - for jdk in cc.product_jdks - for suite in bench.groups.main_suites - ], - - local no_profile_info_builds = [ - c.monthly + hw.e3 + jdk + cc.libgraal + cc.no_profile_info + suite, - for jdk in cc.product_jdks - for suite in bench.groups.main_suites - ], - - - local all_builds = main_builds + weekly_amd64_forks_builds + weekly_aarch64_forks_builds + profiling_builds + avx_builds + zgc_builds + zgc_avx_builds + aarch64_builds + no_tiered_builds + no_profile_info_builds, + local all_builds = main_builds + weekly_amd64_forks_builds + weekly_aarch64_forks_builds + profiling_builds + avx_builds + zgc_builds + zgc_avx_builds + aarch64_builds, local filtered_builds = [b for b in all_builds if b.is_jdk_supported(b.jdk_version) && b.is_arch_supported(b.arch)], // adds a "defined_in" field to all builds mentioning the location of this current file builds:: utils.add_defined_in(filtered_builds, std.thisFile),