ci: do not run ng_benchmarks on CI (#34057)

We don't collect/review the results from CI, so it's just a waste of CPU time.

It's sufficient if we are able to run these locally and manually.

PR Close #34057
This commit is contained in:
Igor Minar 2019-11-22 16:56:09 -08:00 committed by Miško Hevery
parent 005c4a1cc5
commit c291c8e2cb
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ def ng_benchmark(name, bundle):
name = name,
data = [bundle],
entry_point = bundle + ".min_debug.es2015.js",
tags = ["local"],
tags = ["local", "manual"], # run benchmarks locally and never on CI
)
nodejs_binary(
@ -28,5 +28,5 @@ def ng_benchmark(name, bundle):
data = [bundle],
entry_point = bundle + ".min_debug.es2015.js",
args = ["--node_options=--no-turbo-inlining --node_options=--inspect-brk"],
tags = ["local"],
tags = ["local", "manual"], # run benchmarks locally and never on CI
)