fmt/.travis.yml

14 lines
213 B
YAML
Raw Normal View History

2014-04-15 06:18:58 +00:00
language: cpp
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:
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DFMT_EXTRA_TESTS=ON .
2014-05-19 14:35:18 +00:00
- make -j4
2014-04-15 06:28:11 +00:00
- make test