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:
parent
005c4a1cc5
commit
c291c8e2cb
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue