From c291c8e2cb97e6d56a22ede3ba03ec7a06aa9e5b Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Fri, 22 Nov 2019 16:56:09 -0800 Subject: [PATCH] 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 --- tools/ng_benchmark.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ng_benchmark.bzl b/tools/ng_benchmark.bzl index 925e6e8812..571569e384 100644 --- a/tools/ng_benchmark.bzl +++ b/tools/ng_benchmark.bzl @@ -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 )