From 7d9492b5ac55076063ea43723dc7342d45313bf1 Mon Sep 17 00:00:00 2001 From: Yannic Bonenberger Date: Thu, 24 Oct 2019 17:33:39 +0200 Subject: [PATCH] Add config for Bazel CI This will ensure gRPC-Web is compatible with the latest Bazel. If we enable presubmit testing, we can remove Bazel from Kokoro and speed-up CI. --- .bazelci/presubmit.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .bazelci/presubmit.yml diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml new file mode 100644 index 0000000..938ef7a --- /dev/null +++ b/.bazelci/presubmit.yml @@ -0,0 +1,20 @@ +--- +# TODO(yannic): Enable buildifier and test on Windows and RBE (both unsupported by rules_closure). +platforms: + macos: + build_targets: + - //... + test_targets: + - //... + + ubuntu1604: + build_targets: + - //... + test_targets: + - //... + + ubuntu1804: + build_targets: + - "//..." + test_targets: + - //...