fmt/.travis.yml
2014-05-19 07:53:02 -07:00

14 lines
192 B
YAML

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