Skip to content

Commit 07c0920

Browse files
committed
Update notify groups for polybench jobs
1 parent 7860581 commit 07c0920

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

vm/ci/ci_common/common-bench.jsonnet

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
167167
run+: [
168168
self.polybench_wrap(['mx', '--dy', '/sulong', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'sulong:gate']),
169169
],
170+
notify_groups +: ['sulong'],
170171
},
171172
self.polybench_vm_daily('linux', 'amd64', 'sulong') + {
172173
setup+: [
@@ -176,6 +177,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
176177
run+: [
177178
self.polybench_wrap(['mx', '--dy', '/sulong', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'sulong:benchmark']),
178179
],
180+
notify_groups +: ['sulong'],
179181
}
180182
] + [
181183
# Wasm polybench jobs
@@ -187,6 +189,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
187189
run+: [
188190
self.polybench_wrap(['mx', '--dy', '/wasm', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'wasm:gate']),
189191
],
192+
notify_groups +: ['wasm'],
190193
},
191194
self.polybench_vm_daily('linux', 'amd64', 'wasm') + common.deps.wasm + {
192195
setup+: [
@@ -196,6 +199,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
196199
run+: [
197200
self.polybench_wrap(['mx', '--dy', '/wasm', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'wasm:benchmark']),
198201
],
202+
notify_groups +: ['wasm'],
199203
}
200204
] + [
201205
# Espresso polybench jobs
@@ -206,6 +210,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
206210
run+: [
207211
self.polybench_wrap(['mx', '--dy', '/espresso', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'espresso:gate']),
208212
],
213+
notify_groups +: ['espresso'],
209214
},
210215
self.polybench_vm_daily('linux', 'amd64', 'espresso') + {
211216
setup+: [
@@ -214,6 +219,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
214219
run+: [
215220
self.polybench_wrap(['mx', '--dy', '/espresso', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'espresso:benchmark']),
216221
],
222+
notify_groups +: ['espresso'],
217223
}
218224
] + [
219225
# TruffleRuby polybench jobs
@@ -227,6 +233,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
227233
run+: [
228234
self.polybench_wrap(['mx', '--dy', 'truffleruby', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'ruby:gate']),
229235
],
236+
notify_groups +: ['ruby'],
230237
},
231238
self.polybench_vm_daily('linux', 'amd64', 'ruby') + common.deps.truffleruby + {
232239
environment+: {
@@ -238,6 +245,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
238245
run+: [
239246
self.polybench_wrap(['mx', '--dy', 'truffleruby', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'ruby:benchmark']),
240247
],
248+
notify_groups +: ['ruby'],
241249
}
242250
] + [
243251
# GraalPy polybench jobs
@@ -248,6 +256,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
248256
run+: [
249257
self.polybench_wrap(['mx', '--dy', 'graalpython', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'python:gate']),
250258
],
259+
notify_groups +: ['python'],
251260
},
252261
self.polybench_vm_daily('linux', 'amd64', 'python') + {
253262
setup+: [
@@ -256,6 +265,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
256265
run+: [
257266
self.polybench_wrap(['mx', '--dy', 'graalpython', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'python:benchmark']),
258267
],
268+
notify_groups +: ['python'],
259269
}
260270
] + [
261271
# NFI polybench jobs
@@ -284,6 +294,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
284294
run+: [
285295
self.polybench_wrap(['mx', '--dy', '/graal-js', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'js:gate']),
286296
],
297+
notify_groups +: ['javascript'],
287298
},
288299
self.polybench_vm_daily('linux', 'amd64', 'js') + {
289300
setup+: [
@@ -292,6 +303,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
292303
run+: [
293304
self.polybench_wrap(['mx', '--dy', '/graal-js', '--java-home', '${POLYBENCH_JVM}', 'polybench', 'run', '--suite', 'js:benchmark']),
294305
],
306+
notify_groups +: ['javascript'],
295307
}
296308
],
297309
# TODO (GR-60584): reimplement polybenchmarks jobs once polybench is unchained

0 commit comments

Comments
 (0)