build: use bazel workers for ngc and tsc in local development (#32246)
PR Close #32246
This commit is contained in:
parent
5c94833b8f
commit
a84b5ef81b
5
.bazelrc
5
.bazelrc
|
@ -146,6 +146,11 @@ 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.
|
||||
|
|
Loading…
Reference in New Issue