@@ -167,6 +167,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
167
167
run+: [
168
168
self .polybench_wrap(['mx' , '--dy' , '/sulong' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'sulong:gate' ]),
169
169
],
170
+ notify_groups +: ['sulong' ],
170
171
},
171
172
self .polybench_vm_daily('linux' , 'amd64' , 'sulong' ) + {
172
173
setup+: [
@@ -176,6 +177,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
176
177
run+: [
177
178
self .polybench_wrap(['mx' , '--dy' , '/sulong' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'sulong:benchmark' ]),
178
179
],
180
+ notify_groups +: ['sulong' ],
179
181
}
180
182
] + [
181
183
# Wasm polybench jobs
@@ -187,6 +189,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
187
189
run+: [
188
190
self .polybench_wrap(['mx' , '--dy' , '/wasm' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'wasm:gate' ]),
189
191
],
192
+ notify_groups +: ['wasm' ],
190
193
},
191
194
self .polybench_vm_daily('linux' , 'amd64' , 'wasm' ) + common.deps.wasm + {
192
195
setup+: [
@@ -196,6 +199,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
196
199
run+: [
197
200
self .polybench_wrap(['mx' , '--dy' , '/wasm' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'wasm:benchmark' ]),
198
201
],
202
+ notify_groups +: ['wasm' ],
199
203
}
200
204
] + [
201
205
# Espresso polybench jobs
@@ -206,6 +210,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
206
210
run+: [
207
211
self .polybench_wrap(['mx' , '--dy' , '/espresso' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'espresso:gate' ]),
208
212
],
213
+ notify_groups +: ['espresso' ],
209
214
},
210
215
self .polybench_vm_daily('linux' , 'amd64' , 'espresso' ) + {
211
216
setup+: [
@@ -214,6 +219,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
214
219
run+: [
215
220
self .polybench_wrap(['mx' , '--dy' , '/espresso' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'espresso:benchmark' ]),
216
221
],
222
+ notify_groups +: ['espresso' ],
217
223
}
218
224
] + [
219
225
# TruffleRuby polybench jobs
@@ -227,6 +233,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
227
233
run+: [
228
234
self .polybench_wrap(['mx' , '--dy' , 'truffleruby' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'ruby:gate' ]),
229
235
],
236
+ notify_groups +: ['ruby' ],
230
237
},
231
238
self .polybench_vm_daily('linux' , 'amd64' , 'ruby' ) + common.deps.truffleruby + {
232
239
environment+: {
@@ -238,6 +245,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
238
245
run+: [
239
246
self .polybench_wrap(['mx' , '--dy' , 'truffleruby' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'ruby:benchmark' ]),
240
247
],
248
+ notify_groups +: ['ruby' ],
241
249
}
242
250
] + [
243
251
# GraalPy polybench jobs
@@ -248,6 +256,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
248
256
run+: [
249
257
self .polybench_wrap(['mx' , '--dy' , 'graalpython' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'python:gate' ]),
250
258
],
259
+ notify_groups +: ['python' ],
251
260
},
252
261
self .polybench_vm_daily('linux' , 'amd64' , 'python' ) + {
253
262
setup+: [
@@ -256,6 +265,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
256
265
run+: [
257
266
self .polybench_wrap(['mx' , '--dy' , 'graalpython' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'python:benchmark' ]),
258
267
],
268
+ notify_groups +: ['python' ],
259
269
}
260
270
] + [
261
271
# NFI polybench jobs
@@ -284,6 +294,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
284
294
run+: [
285
295
self .polybench_wrap(['mx' , '--dy' , '/graal-js' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'js:gate' ]),
286
296
],
297
+ notify_groups +: ['javascript' ],
287
298
},
288
299
self .polybench_vm_daily('linux' , 'amd64' , 'js' ) + {
289
300
setup+: [
@@ -292,6 +303,7 @@ local repo_config = import '../../../ci/repo-configuration.libsonnet';
292
303
run+: [
293
304
self .polybench_wrap(['mx' , '--dy' , '/graal-js' , '--java-home' , '${POLYBENCH_JVM}' , 'polybench' , 'run' , '--suite' , 'js:benchmark' ]),
294
305
],
306
+ notify_groups +: ['javascript' ],
295
307
}
296
308
],
297
309
# TODO (GR-60584): reimplement polybenchmarks jobs once polybench is unchained
0 commit comments