From 9fcae6164169cb99052b14fe687d258fe348b56b Mon Sep 17 00:00:00 2001 From: Chris Mumford Date: Thu, 14 Jan 2016 16:09:03 -0800 Subject: [PATCH] Added a Travis CI build file. This allows for continuous integration builds by travis-ci.org. More information at https://docs.travis-ci.com/user/languages/cpp --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..f5bd74c454 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: cpp +compiler: +- clang +- gcc +os: +- linux +- osx +sudo: false +before_install: +- echo $LANG +- echo $LC_ALL +script: +- make -j 4 check