Files
yaml-cpp/.travis.yml
T

38 lines
549 B
YAML
Raw Normal View History

2016-04-01 17:32:11 -05:00
language: c++
matrix:
include:
- os: linux
compiler: gcc
- os: osx
compiler: clang
- os: osx
compiler: gcc
2019-10-16 11:44:33 -03:00
env:
- CTEST_OUTPUT_ON_FAILURE=1
2016-04-01 17:32:11 -05:00
before_script:
- mkdir build
- cd build
- cmake ..
- cd ..
2016-04-01 17:32:11 -05:00
script:
- cmake --build build
- cmake --build build --target test
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.9
packages:
- g++-4.9
- clang-3.9
update: true
homebrew:
packages:
- ccache
- gcc@4.9
- llvm@4
update: true