From 899aafbb160add0169b36d1acb5b02403dfb7ac0 Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Tue, 4 Feb 2020 00:10:01 -0800 Subject: [PATCH] build: no-remote-exec for integration tests (#33927) For now until RBE actions can access network for `yarn install` PR Close #33927 --- integration/angular_integration_test.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration/angular_integration_test.bzl b/integration/angular_integration_test.bzl index 7b15898bd5..96abe0e520 100644 --- a/integration/angular_integration_test.bzl +++ b/integration/angular_integration_test.bzl @@ -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 # as chrome (which is run by ng) that require access to files outside of the sandbox. "no-sandbox", + # Remote doesn't work as it needs network access right now + "no-remote-exec", ], data = kwargs.pop("data", []) + [ # We need the yarn_bin & yarn_files available at runtime