Skip to content

Commit 2174385

Browse files
leecoder이충우
authored and
이충우
committed
Adding .travis.yml
1 parent 01bf00c commit 2174385

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)