From 3383643627dd22fee7be164acad52119e5c4e46d Mon Sep 17 00:00:00 2001 From: Rodrigo Queiro Date: Wed, 18 Apr 2018 15:43:39 +0200 Subject: [PATCH] Add configuration for Bazel CI (#1083) This builds and tests on Ubuntu 16. --- .bazelci/presubmit.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .bazelci/presubmit.yml diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml new file mode 100644 index 0000000..58220f5 --- /dev/null +++ b/.bazelci/presubmit.yml @@ -0,0 +1,10 @@ +--- +platforms: + ubuntu1604: + build_targets: + - "..." + # Tests cannot run concurrently as some of them open the same port. + test_flags: + - "--jobs=1" + test_targets: + - "..."