summaryrefslogtreecommitdiffhomepage
path: root/.bazelrc
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-12-30 16:52:06 -0800
committergVisor bot <gvisor-bot@google.com>2020-12-30 16:54:16 -0800
commit3b1d37f6ab5ca547020fdd573d3bf6a621313132 (patch)
tree96717a788beff87844a59d14d4963a2b8775b4bb /.bazelrc
parent4691a8125370d61ccb9732574e97ccc26362af42 (diff)
Remove remote execution support.
PiperOrigin-RevId: 349616845
Diffstat (limited to '.bazelrc')
-rw-r--r--.bazelrc26
1 files changed, 1 insertions, 25 deletions
diff --git a/.bazelrc b/.bazelrc
index 47c26843d..9eee6bea5 100644
--- a/.bazelrc
+++ b/.bazelrc
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-# RBE requires a strong hash function, such as SHA256.
+# Ensure a strong hash function.
startup --host_jvm_args=-Dbazel.DigestFunction=SHA256
# Build with C++17.
@@ -20,27 +20,3 @@ build --cxxopt=-std=c++17
# Display the current git revision in the info block.
build --stamp --workspace_status_command tools/workspace_status.sh
-
-# Enable remote execution so actions are performed on the remote systems.
-build:remote --remote_executor=grpcs://remotebuildexecution.googleapis.com
-build:remote --bes_backend=buildeventservice.googleapis.com
-build:remote --bes_results_url="https://source.cloud.google.com/results/invocations"
-build:remote --bes_timeout=600s
-build:remote --project_id=gvisor-rbe
-build:remote --remote_instance_name=projects/gvisor-rbe/instances/default_instance
-
-# Enable authentication. This will pick up application default credentials by
-# default. You can use --google_credentials=some_file.json to use a service
-# account credential instead.
-build:remote --google_default_credentials=true
-build:remote --auth_scope="https://www.googleapis.com/auth/cloud-source-tools"
-
-# Add a custom platform and toolchain that builds in a privileged docker
-# container, which is required by our syscall tests.
-build:remote --host_platform=//tools/bazeldefs:rbe_ubuntu1604
-build:remote --extra_toolchains=//tools/bazeldefs:cc-toolchain-clang-x86_64-default
-build:remote --extra_execution_platforms=//tools/bazeldefs:rbe_ubuntu1604
-build:remote --platforms=//tools/bazeldefs:rbe_ubuntu1604
-build:remote --crosstool_top=@rbe_default//cc:toolchain
-build:remote --jobs=100
-build:remote --remote_timeout=3600