build: Remove --watchfs from bazelrc file (#29635)
--watchfs is causing the build to be flaky on Windows because Bazel doesn't have proper support for watchfs on Windows, but it doesn't seem to bring much performance on Linux, either. Fixes: https://github.com/angular/angular/issues/29541 PR Close #29635
This commit is contained in:
parent
f9497bf28b
commit
701da0099b
5
.bazelrc
5
.bazelrc
|
@ -35,8 +35,9 @@ test:debug --test_arg=--node_options=--inspect-brk --test_output=streamed --test
|
|||
# See https://github.com/bazelbuild/bazel/issues/4603
|
||||
build --symlink_prefix=dist/
|
||||
|
||||
# Performance: avoid stat'ing input files
|
||||
build --watchfs
|
||||
# Disable watchfs as it causes tests to be flaky on Windows
|
||||
# https://github.com/angular/angular/issues/29541
|
||||
build --nowatchfs
|
||||
|
||||
# Turn off legacy external runfiles
|
||||
run --nolegacy_external_runfiles
|
||||
|
|
|
@ -36,10 +36,6 @@ build --verbose_failures=true
|
|||
build --action_env=PATH
|
||||
test --action_env=PATH --test_env=PATH
|
||||
|
||||
# Disable watchfs on Windows as it causes tests to be flaky
|
||||
# https://github.com/angular/angular/issues/29541
|
||||
build --nowatchfs
|
||||
|
||||
# Exclude tests known to not work on Windows.
|
||||
|
||||
# Chrome web tests are currently broken.
|
||||
|
|
Loading…
Reference in New Issue