build: no-remote-exec for integration tests (#33927)
For now until RBE actions can access network for `yarn install` PR Close #33927
This commit is contained in:
parent
dde68ff954
commit
899aafbb16
|
@ -119,6 +119,8 @@ def _angular_integration_test(pinned_npm_packages = [], **kwargs):
|
||||||
# Integration do not work inside of a sandbox as they may run host applications such
|
# Integration do not work inside of a sandbox as they may run host applications such
|
||||||
# as chrome (which is run by ng) that require access to files outside of the sandbox.
|
# as chrome (which is run by ng) that require access to files outside of the sandbox.
|
||||||
"no-sandbox",
|
"no-sandbox",
|
||||||
|
# Remote doesn't work as it needs network access right now
|
||||||
|
"no-remote-exec",
|
||||||
],
|
],
|
||||||
data = kwargs.pop("data", []) + [
|
data = kwargs.pop("data", []) + [
|
||||||
# We need the yarn_bin & yarn_files available at runtime
|
# We need the yarn_bin & yarn_files available at runtime
|
||||||
|
|
Loading…
Reference in New Issue