Configure Travis to build "Release" instead of "Debug"

This commit is contained in:
Alexander Karzhenkov 2020-12-23 20:55:02 +05:00
parent 7092890ff1
commit 10db9184a3

View file

@ -325,7 +325,7 @@ script:
- CMAKE_OPTIONS+=${CXX_STANDARD:+ -DCMAKE_CXX_STANDARD=$CXX_STANDARD -DCMAKE_CXX_STANDARD_REQUIRED=ON}
# build configuration
- CMAKE_OPTIONS+=" -DCMAKE_BUILD_TYPE=Debug"
- CMAKE_OPTIONS+=" -DCMAKE_BUILD_TYPE=Release"
# compile and execute unit tests
- mkdir -p build && cd build