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
This commit is contained in:
Joey Perrott 2019-09-16 09:35:15 -07:00 committed by Andrew Kushnir
parent d9054803e3
commit 894c4b5390
2 changed files with 0 additions and 10 deletions

View File

@ -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.

View File

@ -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