naming update, documentation fix

pull/18546/head
Bill Feng 6 years ago
parent df89d8e157
commit 5158c3db27
  1. 2
      WORKSPACE
  2. 0
      third_party/toolchains/bazel_0.23.2_rbe_windows/BUILD
  3. 0
      third_party/toolchains/bazel_0.23.2_rbe_windows/cc_toolchain_config.bzl
  4. 0
      third_party/toolchains/bazel_0.23.2_rbe_windows/dummy_toolchain.bzl
  5. 2
      tools/internal_ci/linux/grpc_bazel_build_in_docker.sh
  6. 4
      tools/remote_build/README.md
  7. 8
      tools/remote_build/windows.bazelrc

@ -16,7 +16,7 @@ register_execution_platforms(
register_toolchains(
"//third_party/toolchains:cc-toolchain-clang-x86_64-default",
"//third_party/toolchains/bazel_0.23.2:cc-toolchain-x64_windows",
"//third_party/toolchains/bazel_0.23.2_rbe_windows:cc-toolchain-x64_windows",
)
# TODO(https://github.com/grpc/grpc/issues/18331): Move off of this dependency.

@ -25,4 +25,4 @@ git clone /var/local/jenkins/grpc /var/local/git/grpc
${name}')
cd /var/local/git/grpc
#TODO(yfen): add back examples/... to build targets once python rules issues are resolved
bazel build --spawn_strategy=standalone --genrule_strategy=standalone :all test/...
bazel build --spawn_strategy=standalone --genrule_strategy=standalone :all test/...

@ -31,8 +31,8 @@ bazel --bazelrc=tools/remote_build/manual.bazelrc test --config=asan //test/...
Run on Windows MSVC:
```
# local manual run only for C++ targets (RBE to be supported)
bazel --bazelrc=tools/remote_build/windows.bazelrc test //test/cpp/...
# RBE manual run only for c-core (must be run on a Windows host machine)
bazel --bazelrc=tools/remote_build/windows.bazelrc build :all [--credentials_json=(path to service account credentials)]
```
Available command line options can be found in

@ -1,14 +1,12 @@
# TODO(yfen): Merge with rbe_common.bazelrc and enable Windows RBE
startup --host_jvm_args=-Dbazel.DigestFunction=SHA256
build --remote_cache=remotebuildexecution.googleapis.com
build --remote_executor=remotebuildexecution.googleapis.com
build --tls_enabled=true
build --host_crosstool_top=//third_party/toolchains/bazel_0.23.2:toolchain
build --crosstool_top=//third_party/toolchains/bazel_0.23.2:toolchain
build --extra_toolchains=//third_party/toolchains/bazel_0.23.2:cc-toolchain-x64_windows
build --host_crosstool_top=//third_party/toolchains/bazel_0.23.2_rbe_windows:toolchain
build --crosstool_top=//third_party/toolchains/bazel_0.23.2_rbe_windows:toolchain
build --extra_toolchains=//third_party/toolchains/bazel_0.23.2_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

Loading…
Cancel
Save