1startup --host_jvm_args=-Dbazel.DigestFunction=SHA256 2 3build --remote_cache=grpcs://remotebuildexecution.googleapis.com 4build --remote_executor=grpcs://remotebuildexecution.googleapis.com 5 6build --auth_enabled=true 7 8build --host_crosstool_top=//third_party/toolchains/bazel_0.26.0_rbe_windows:toolchain 9build --crosstool_top=//third_party/toolchains/bazel_0.26.0_rbe_windows:toolchain 10build --extra_toolchains=//third_party/toolchains/bazel_0.26.0_rbe_windows:cc-toolchain-x64_windows 11# Use custom execution platforms defined in third_party/toolchains 12build --extra_execution_platforms=//third_party/toolchains:rbe_windows 13build --host_platform=//third_party/toolchains:rbe_windows 14build --platforms=//third_party/toolchains:rbe_windows 15 16build --shell_executable=C:\\tools\\msys64\\usr\\bin\\bash.exe 17build --python_path=C:\\Python27\\python.exe 18 19build --spawn_strategy=remote 20build --strategy=Javac=remote 21build --strategy=Closure=remote 22build --genrule_strategy=remote 23build --remote_timeout=7200 # very large value to avoid problems like https://github.com/grpc/grpc/issues/20777 24 25build --remote_instance_name=projects/grpc-testing/instances/default_instance 26 27build --verbose_failures=true 28 29build --experimental_strict_action_env=true 30build --action_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 31 32# don't use port server 33build --define GRPC_PORT_ISOLATED_RUNTIME=1 34build --test_tag_filters=-no_windows 35build --build_tag_filters=-no_windows 36 37# without verbose gRPC logs the test outputs are not very useful 38test --test_env=GRPC_VERBOSITY=debug 39 40# Set flags for uploading to BES in order to view results in the Bazel Build 41# Results UI. 42build --bes_backend=grpcs://buildeventservice.googleapis.com 43build --bes_timeout=600s 44build --bes_results_url="https://source.cloud.google.com/results/invocations/" 45build --project_id=grpc-testing 46 47build --jobs=100 48 49# print output for tests that fail (default is "summary") 50build --test_output=errors 51