From 894c4b53904cdd62fe2a3c92ca9350709624ad99 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Mon, 16 Sep 2019 09:35:15 -0700 Subject: [PATCH] ci: use automatic selection strategies (#32678) Removes the selection strategies for `AngularTemplateCompile` and `TypeScriptCompile` causing them to use the automatic selection strategies instead. PR Close #32678 --- .bazelrc | 5 ----- .circleci/bazel.common.rc | 5 ----- 2 files changed, 10 deletions(-) diff --git a/.bazelrc b/.bazelrc index 662def0f6a..d47a85d739 100644 --- a/.bazelrc +++ b/.bazelrc @@ -146,11 +146,6 @@ build --incompatible_list_based_execution_strategy_selection=false test --incompatible_list_based_execution_strategy_selection=false run --incompatible_list_based_execution_strategy_selection=false -# Use workers for tsc and ngc when building locally. -# This config is overwritten on CI to as the worker strategy causes flakes on CI. -build --strategy=AngularTemplateCompile=worker -build --strategy=TypeScriptCompile=worker - #################################################### # User bazel configuration # NOTE: This needs to be the *last* entry in the config. diff --git a/.circleci/bazel.common.rc b/.circleci/bazel.common.rc index 09b45f2ae8..f70a957aea 100644 --- a/.circleci/bazel.common.rc +++ b/.circleci/bazel.common.rc @@ -13,8 +13,3 @@ test --flaky_test_attempts=2 # More details on failures build --verbose_failures=true - -# Utilize remote strategy for AngularTemplateCompile and TypeScriptCompile to take -# advantage of caching of outputs -build --strategy=AngularTemplateCompile=remote -build --strategy=TypeScriptCompile=remote