From e0341da07bf7cdc00eafdc00744a807a7e5ba427 Mon Sep 17 00:00:00 2001 From: Rodrigo Queiro Date: Wed, 18 Apr 2018 11:52:15 +0200 Subject: [PATCH] Add Bazel CI configuration This was previously present in https://github.com/bazelbuild/continuous-integration, but the Bazel team asked us to move it to our repo. It will be helpful if we need to change the build configuration, eg to add new platforms. --- .bazelci/presubmit.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .bazelci/presubmit.yml diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml new file mode 100644 index 0000000..dd13f44 --- /dev/null +++ b/.bazelci/presubmit.yml @@ -0,0 +1,17 @@ +--- +platforms: + ubuntu1404: + build_targets: + - "..." + test_targets: + - "..." + ubuntu1604: + build_targets: + - "..." + test_targets: + - "..." + macos: + build_targets: + - "..." + test_targets: + - "..."