From 7f5710276fee097e6aa07c7040341360ea2d382f Mon Sep 17 00:00:00 2001 From: tangxifan Date: Sat, 4 Jul 2020 17:32:31 -0600 Subject: [PATCH] now use release mode in CI compilation --- .travis/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/build.sh b/.travis/build.sh index 254133177..c409d6723 100644 --- a/.travis/build.sh +++ b/.travis/build.sh @@ -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