From 1fe8f0352d3b923e350aa31b01feb269094c4a27 Mon Sep 17 00:00:00 2001 From: Yannic Bonenberger Date: Thu, 24 Oct 2019 17:20:32 +0200 Subject: [PATCH] Add config for Bazel CI This PR adds a simple config to test parts of gRPC on Ubuntu 16.04. We will add more platforms (macOS, Windows, RBE, ...) when the build is green. See #19171 --- .bazelci/presubmit.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .bazelci/presubmit.yml diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml new file mode 100644 index 00000000000..9920bc9adfc --- /dev/null +++ b/.bazelci/presubmit.yml @@ -0,0 +1,12 @@ +--- +# TODO(yannic): Ideally, we should also enable buildifier and all platforms should test `//...`. +platforms: + ubuntu1604: + build_targets: + - //:all + - //src/proto/... + - //src/python/... + test_targets: + - //:all + - //src/proto/... + - //src/python/...