fmt/.travis.yml
2014-06-06 06:35:28 -07:00

14 lines
213 B
YAML

language: cpp
before_install:
- git submodule update --init
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
script:
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DFMT_EXTRA_TESTS=ON .
- make -j4
- make test