fmt/.travis.yml

21 lines
317 B
YAML
Raw Normal View History

2014-04-15 06:18:58 +00:00
language: cpp
2014-06-06 15:05:13 +00:00
os:
- linux
- osx
2014-04-15 06:28:11 +00:00
before_install:
- git submodule update --init
2014-05-19 14:53:02 +00:00
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
2014-04-15 06:18:58 +00:00
script:
2015-03-04 17:22:52 +00:00
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DFMT_EXTRA_TESTS=ON .
2014-05-19 14:35:18 +00:00
- make -j4
2014-08-17 14:56:48 +00:00
- CTEST_OUTPUT_ON_FAILURE=1 make test
2014-06-06 16:18:57 +00:00
after_failure:
- cat Testing/Temporary/LastTest.log