From 4a956e19802f6aee7a8e36aee783bc4986ea0650 Mon Sep 17 00:00:00 2001 From: arvidn Date: Thu, 4 Jun 2015 20:15:57 -0400 Subject: [PATCH] add travis file --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..84ca2787c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: cpp + +before_script: + - if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install libboost-dev boost-build boost-jam; fi + - if [ $TRAVIS_OS_NAME == osx ]; then sudo port install boost boost-jam boost-build; fi + +script: + - cd test; bjam -j2 +