Skip to content

Commit c291c8e

Browse files
IgorMinarmhevery
authored andcommitted
ci: do not run ng_benchmarks on CI (angular#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 angular#34057
1 parent 005c4a1 commit c291c8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/ng_benchmark.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ def ng_benchmark(name, bundle):
2020
name = name,
2121
data = [bundle],
2222
entry_point = bundle + ".min_debug.es2015.js",
23-
tags = ["local"],
23+
tags = ["local", "manual"], # run benchmarks locally and never on CI
2424
)
2525

2626
nodejs_binary(
2727
name = name + "_profile",
2828
data = [bundle],
2929
entry_point = bundle + ".min_debug.es2015.js",
3030
args = ["--node_options=--no-turbo-inlining --node_options=--inspect-brk"],
31-
tags = ["local"],
31+
tags = ["local", "manual"], # run benchmarks locally and never on CI
3232
)

0 commit comments

Comments
 (0)