Skip to content

Commit 54a86ed

Browse files
committed
[GR-41916] Move all post-merge bench jobs to daily.
PullRequest: graal/12968
2 parents 78737af + 64c0e82 commit 54a86ed

File tree

4 files changed

+6
-17
lines changed

4 files changed

+6
-17
lines changed

compiler/ci/ci_common/benchmark-builders.jsonnet

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@
77

88
local main_builds = std.flattenArrays([
99
[
10-
c.post_merge + hw.x52 + jdk + cc.libgraal + bench.dacapo,
10+
c.daily + hw.x52 + jdk + cc.libgraal + bench.dacapo,
1111
c.daily + hw.x52 + jdk + cc.jargraal + bench.dacapo,
1212
c.weekly + hw.x52 + jdk + cc.libgraal + bench.dacapo_size_variants,
1313
c.weekly + hw.x52 + jdk + cc.jargraal + bench.dacapo_size_variants,
1414
c.weekly + hw.x52 + jdk + cc.libgraal + bench.dacapo_timing,
1515
c.weekly + hw.x52 + jdk + cc.jargraal + bench.dacapo_timing,
16-
c.post_merge + hw.x52 + jdk + cc.libgraal + bench.scala_dacapo,
16+
c.daily + hw.x52 + jdk + cc.libgraal + bench.scala_dacapo,
1717
c.daily + hw.x52 + jdk + cc.jargraal + bench.scala_dacapo,
1818
c.weekly + hw.x52 + jdk + cc.libgraal + bench.scala_dacapo_size_variants,
1919
c.weekly + hw.x52 + jdk + cc.jargraal + bench.scala_dacapo_size_variants,
2020
c.weekly + hw.x52 + jdk + cc.libgraal + bench.scala_dacapo_timing,
2121
c.weekly + hw.x52 + jdk + cc.jargraal + bench.scala_dacapo_timing,
22-
c.post_merge + hw.x52 + jdk + cc.libgraal + bench.renaissance,
22+
c.daily + hw.x52 + jdk + cc.libgraal + bench.renaissance,
2323
c.daily + hw.x52 + jdk + cc.jargraal + bench.renaissance,
24-
c.post_merge + hw.x52 + jdk + cc.libgraal + bench.specjvm2008,
24+
c.daily + hw.x52 + jdk + cc.libgraal + bench.specjvm2008,
2525
c.daily + hw.x52 + jdk + cc.jargraal + bench.specjvm2008,
2626
c.daily + hw.x52 + jdk + cc.libgraal + bench.specjbb2015,
2727
c.weekly + hw.x52 + jdk + cc.jargraal + bench.specjbb2015,
@@ -33,7 +33,7 @@
3333
c.daily + hw.x52 + jdk + cc.jargraal + bench.awfy,
3434
c.daily + hw.x52 + jdk + cc.libgraal + bench.microservice_benchmarks,
3535
c.weekly + hw.x52 + jdk + cc.jargraal + bench.microservice_benchmarks,
36-
c.post_merge + hw.x52 + jdk + cc.libgraal + bench.renaissance_legacy,
36+
c.daily + hw.x52 + jdk + cc.libgraal + bench.renaissance_legacy,
3737
c.daily + hw.x52 + jdk + cc.jargraal + bench.renaissance_legacy,
3838
c.daily + hw.x52 + jdk + cc.libgraal + bench.micros_graal_whitebox,
3939
c.weekly + hw.x52 + jdk + cc.jargraal + bench.micros_graal_whitebox,

espresso/ci/ci_common/common.jsonnet

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ local benchmark_suites = ['dacapo', 'renaissance', 'scala-dacapo'];
5858
// generic targets
5959
gate: {targets+: ['gate'], timelimit: "1:00:00"},
6060
postMerge: {targets+: ['post-merge'], notify_groups:: ['espresso']},
61-
bench: {targets+: ['bench', 'post-merge'], notify_groups:: ['espresso']},
6261
dailyBench: {targets+: ['bench', 'daily'], notify_groups:: ['espresso']},
6362
daily: {targets+: ['daily'], notify_groups:: ['espresso']},
6463
weekly: {targets+: ['weekly'], notify_groups:: ['espresso']},

vm/ci/ci_common/common.jsonnet

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -228,16 +228,6 @@ local devkits = common_json.devkits;
228228
targets+: ['gate'],
229229
},
230230

231-
bench_vm_linux_amd64: self.vm_linux_amd64 + {
232-
capabilities+: ['no_frequency_scaling'],
233-
targets+: ['post-merge', 'bench'],
234-
},
235-
236-
bench_vm_darwin_amd64: self.vm_darwin_amd64 + {
237-
capabilities+: ['no_frequency_scaling'],
238-
targets+: ['post-merge', 'bench'],
239-
},
240-
241231
bench_daily_vm_linux_amd64: self.vm_linux_amd64 + {
242232
capabilities+: ['no_frequency_scaling'],
243233
targets+: ['daily', 'bench'],

wasm/ci/ci_common/common.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local graal_suite_root = root_ci.graal_suite_root;
1717
},
1818

1919
bench: {
20-
targets+: ['bench', 'post-merge'],
20+
targets+: ['bench', 'daily'],
2121
},
2222

2323
common: {

0 commit comments

Comments
 (0)