ci: don't run benchmark_tests on remote executors (#34996)
Since benchmarks are meant to test in a consistent environment, we cannot execute the benchmark on RBE executors as executors do not run in calibrated environments. PR Close #34996
This commit is contained in:
parent
7ca74375cb
commit
95383ee6a9
|
@ -17,7 +17,13 @@ def benchmark_test(name, server, tags = [], **kwargs):
|
||||||
on_prepare = "//modules/benchmarks:start-server.js",
|
on_prepare = "//modules/benchmarks:start-server.js",
|
||||||
server = server,
|
server = server,
|
||||||
# Benchmark targets should not run on CI by default.
|
# Benchmark targets should not run on CI by default.
|
||||||
tags = tags + ["manual"],
|
tags = tags + [
|
||||||
test_suite_tags = ["manual"],
|
"manual",
|
||||||
|
"no-remote-exec",
|
||||||
|
],
|
||||||
|
test_suite_tags = [
|
||||||
|
"manual",
|
||||||
|
"no-remote-exec",
|
||||||
|
],
|
||||||
**kwargs
|
**kwargs
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue