We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01bf00c commit 2174385Copy full SHA for 2174385
.travis.yml
@@ -0,0 +1,17 @@
1
+language: cpp
2
+compiler:
3
+ - gcc
4
+ - clang
5
+env: BOOST_ROOT=$TRAVIS_BUILD_DIR/../boost_1_55_0
6
+
7
+before_install:
8
+ - curl -s http://cznic.dl.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.bz2|tar xfj - -C ..
9
+install:
10
+ - cd $BOOST_ROOT
11
+ - ./bootstrap.sh --with-toolset=$CC
12
+ - ./b2 -j4 --stagedir=.
13
+ - cd -
14
15
+script:
16
+ - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=$CC -DCMAKE_CXX_COMPILER=$CXX
17
+ - make all test
0 commit comments