mstch/.travis.yml

31 lines
658 B
YAML
Raw Normal View History

2015-04-22 17:34:21 +08:00
language: cpp
2015-05-12 05:45:55 +08:00
env:
matrix:
2015-05-12 14:11:01 +08:00
- COMPILER=g++-4.9
- COMPILER=g++-4.8
- COMPILER=g++-4.7
2015-04-22 17:34:21 +08:00
before_install:
2015-04-22 17:48:46 +08:00
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
2015-04-22 18:17:18 +08:00
- sudo add-apt-repository ppa:boost-latest/ppa -y
2015-04-22 17:34:21 +08:00
- sudo apt-get update -qq
2015-09-30 22:44:41 +08:00
- sudo apt-get install -qq libboost1.54-dev libboost-program-options1.54-dev build-essential ${COMPILER}
- wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
- tar xf cmake-3.2.2.tar.gz
- cd cmake-3.2.2
- ./configure
- make
- sudo make install
2015-09-30 22:55:10 +08:00
- cd ..
2015-04-22 17:34:21 +08:00
before_script:
2015-05-12 14:11:01 +08:00
- export CXX=${COMPILER}
2015-04-22 17:34:21 +08:00
- mkdir build
- cd build
2015-04-22 17:41:13 +08:00
- cmake -DWITH_UNIT_TESTS=ON ..
2015-04-22 17:34:21 +08:00
script: make
2015-04-22 17:41:13 +08:00
2015-04-22 18:35:34 +08:00
after_script: make test