Multiple build types in travis.

This commit is contained in:
Victor Zverovich 2014-05-19 07:53:02 -07:00
parent cfa34cff2d
commit 3c1bc74b04

View File

@ -3,7 +3,11 @@ language: cpp
before_install:
- git submodule update --init
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
script:
- cmake .
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .
- make -j4
- make test