diff --git a/.travis.yml b/.travis.yml index 4235591b..4ce58caf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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