now use release mode in CI compilation

This commit is contained in:
tangxifan 2020-07-04 17:32:31 -06:00
parent 4f8260a7ba
commit 7f5710276f
1 changed files with 2 additions and 2 deletions

View File

@ -9,9 +9,9 @@ mkdir build
cd build
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
cmake .. -DCMAKE_BUILD_TYPE=debug -DENABLE_VPR_GRAPHICS=off
cmake .. -DENABLE_VPR_GRAPHICS=off
else
cmake .. -DCMAKE_BUILD_TYPE=debug
cmake ..
fi
make -j16