diff options
author | Adin Scannell <ascannell@google.com> | 2020-12-30 16:52:06 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-12-30 16:54:16 -0800 |
commit | 3b1d37f6ab5ca547020fdd573d3bf6a621313132 (patch) | |
tree | 96717a788beff87844a59d14d4963a2b8775b4bb /tools/bazel.mk | |
parent | 4691a8125370d61ccb9732574e97ccc26362af42 (diff) |
Remove remote execution support.
PiperOrigin-RevId: 349616845
Diffstat (limited to 'tools/bazel.mk')
-rw-r--r-- | tools/bazel.mk | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/bazel.mk b/tools/bazel.mk index 678593acf..9b8def713 100644 --- a/tools/bazel.mk +++ b/tools/bazel.mk @@ -58,16 +58,11 @@ DOCKER_CONFIG := /etc/docker ## Bazel will be run with standard flags. You can specify the following flags ## to control which flags are passed: ## -## STARTUP_OPTIONS - Startup options passed to Bazel. -## BAZEL_CONFIG - A bazel config file. +## STARTUP_OPTIONS - Startup options passed to Bazel. ## STARTUP_OPTIONS := -BAZEL_CONFIG := BAZEL := bazel $(STARTUP_OPTIONS) BASE_OPTIONS := --color=no --curses=no -ifneq (,$(BAZEL_CONFIG)) -BASE_OPTIONS += --config=$(BAZEL_CONFIG) -endif TEST_OPTIONS := $(BASE_OPTIONS) \ --test_output=errors \ --keep_going \ |