1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- startup --host_jvm_args=-Dbazel.DigestFunction=SHA256
- build --remote_cache=grpcs://remotebuildexecution.googleapis.com
- build --remote_executor=grpcs://remotebuildexecution.googleapis.com
- build --auth_enabled=true
- build --host_crosstool_top=//third_party/toolchains/bazel_0.26.0_rbe_windows:toolchain
- build --crosstool_top=//third_party/toolchains/bazel_0.26.0_rbe_windows:toolchain
- build --extra_toolchains=//third_party/toolchains/bazel_0.26.0_rbe_windows:cc-toolchain-x64_windows
- # Use custom execution platforms defined in third_party/toolchains
- build --extra_execution_platforms=//third_party/toolchains:rbe_windows
- build --host_platform=//third_party/toolchains:rbe_windows
- build --platforms=//third_party/toolchains:rbe_windows
- build --shell_executable=C:\\tools\\msys64\\usr\\bin\\bash.exe
- build --python_path=C:\\Python27\\python.exe
- build --spawn_strategy=remote
- build --strategy=Javac=remote
- build --strategy=Closure=remote
- build --genrule_strategy=remote
- build --remote_timeout=7200 # very large value to avoid problems like https://github.com/grpc/grpc/issues/20777
- build --remote_instance_name=projects/grpc-testing/instances/default_instance
- build --verbose_failures=true
- build --experimental_strict_action_env=true
- build --action_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
- # don't use port server
- build --define GRPC_PORT_ISOLATED_RUNTIME=1
- build --test_tag_filters=-no_windows
- build --build_tag_filters=-no_windows
- # without verbose gRPC logs the test outputs are not very useful
- test --test_env=GRPC_VERBOSITY=debug
- # Set flags for uploading to BES in order to view results in the Bazel Build
- # Results UI.
- build --bes_backend=grpcs://buildeventservice.googleapis.com
- build --bes_timeout=600s
- build --bes_results_url="https://source.cloud.google.com/results/invocations/"
- build --project_id=grpc-testing
- build --jobs=100
- # print output for tests that fail (default is "summary")
- build --test_output=errors
|