👷 set build type

This commit is contained in:
Niels Lohmann 2018-06-24 16:29:03 +02:00
parent 7bbc06b487
commit 067e288289
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -2,6 +2,16 @@ version: '{build}'
environment:
matrix:
- COMPILER: mingw
platform: x86
FLAGS: ""
GENERATOR: MinGW Makefiles
- COMPILER: mingw
platform: x64
FLAGS: ""
GENERATOR: MinGW Makefiles
- os: Visual Studio 2015
platform: x86
FLAGS: ""
@ -32,15 +42,8 @@ environment:
FLAGS: "/permissive- /std:c++latest /utf-8"
GENERATOR: Visual Studio 15 2017
- COMPILER: mingw
platform: x86
FLAGS: ""
GENERATOR: MinGW Makefiles
- COMPILER: mingw
platform: x64
FLAGS: ""
GENERATOR: MinGW Makefiles
matrix:
fast_finish: true
init:
- cmake --version
@ -50,10 +53,10 @@ install:
- if "%COMPILER%"=="mingw" set PATH=C:\MinGW\bin;%PATH%
before_build:
- cmake . -G "%GENERATOR%" -DCMAKE_CXX_FLAGS="%FLAGS%" -DCMAKE_BUILD_TYPE=Release
- cmake . -G "%GENERATOR%" -DCMAKE_CXX_FLAGS="%FLAGS%"
build_script:
- cmake --build .
- cmake --build . --config Release
test_script:
- ctest -C Release -V -j