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