From 257149e9db9eca1a8dd56effc2f36e2a28c0a329 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Thu, 9 May 2013 19:43:29 -0500 Subject: [PATCH] experimental travis-ci support references #171 --- .travis.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..92c4553341 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: cpp +compiler: + - clang + - gcc +before_install + - sudo apt-get install libboost1.48-dev +env: + global: + - BOOST_INCLUDES=/usr/include + - BOOST_LIBS=/usr/libs +script: scons && scons test +branches: + only: + - experimental +notifications: + recipients: + - travis@zaphoyd.com + email: + on_success: change + on_failure: always \ No newline at end of file