Files
yaml-cpp/.travis.yml
T

25 lines
457 B
YAML
Raw Normal View History

2016-04-01 17:32:11 -05:00
language: c++
2016-04-01 18:11:37 -05:00
os:
- linux
- osx
2016-04-01 17:32:11 -05:00
compiler:
- clang
- gcc
2016-04-01 17:53:46 -05:00
before_install:
2016-04-01 18:11:37 -05:00
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
&& sudo apt-get update -qq
if [ "$CXX" = "g++" ]; then
sudo apt-get install -qq g++-4.7
&& export CXX="g++-4.7" CC="gcc-4.7"
fi
fi
2016-04-01 17:32:11 -05:00
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make
- test/run-tests