From e9d9d645278914bdd1b29de421f3a6a346585b13 Mon Sep 17 00:00:00 2001 From: Austin Schuh Date: Mon, 18 Feb 2019 17:55:50 -0800 Subject: [PATCH] Add presubmit.yml for bazel CI configuration (#5193) https://github.com/bazelbuild/continuous-integration/tree/master/buildkite#configuring-a-pipeline --- .bazelci/presubmit.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .bazelci/presubmit.yml diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml new file mode 100644 index 0000000..cea328d --- /dev/null +++ b/.bazelci/presubmit.yml @@ -0,0 +1,23 @@ +--- +buildifier: true +platforms: + ubuntu1404: + build_targets: + - "..." + test_targets: + - "..." + ubuntu1604: + build_targets: + - "..." + test_targets: + - "..." + macos: + build_targets: + - "..." + test_targets: + - "..." + windows: + build_targets: + - "..." + test_targets: + - "..." -- 2.7.4