set cmake build type to Release

This commit is contained in:
Martin Kroeker 2020-06-03 15:28:59 +02:00 committed by GitHub
parent e6e2e531bc
commit a8f42ae85c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -77,5 +77,5 @@ jobs:
mkdir build mkdir build
cd build cd build
cmake -DDYNAMIC_ARCH=1 -DNOFORTRAN=0 -DBUILD_WITHOUT_LAPACK=0 -DCMAKE_VERBOSE_MAKEFILE=ON .. cmake -DDYNAMIC_ARCH=1 -DNOFORTRAN=0 -DBUILD_WITHOUT_LAPACK=0 -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=Release ..
make -j$(nproc) make -j$(nproc)