From dc5c0fa33bebcfe4ff83c7bbbb5a05abea7e0e32 Mon Sep 17 00:00:00 2001 From: Michael Muller Date: Wed, 26 Sep 2018 14:20:13 -0400 Subject: [PATCH] Added .travis.yml file. --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..4cf511cab --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +sudo: required +dist: trusty +addons: + apt: + packages: + - wget + +before_install: + - wget https://github.com/bazelbuild/bazel/releases/download/0.17.1/bazel-0.17.1-installer-linux-x86_64.sh + - chmod 755 bazel-0.17.1-installer-linux-x86_64.sh + - sudo ./bazel-0.17.1-installer-linux-x86_64.sh + +script: + - bazel build ...