Skip to content

Commit c8323cd

Browse files
committed
Using RelWithDebInfo when building and testing appveyor
1 parent 75597f1 commit c8323cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ install:
1919

2020
build_script:
2121
- IF "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2015" ( SET GEN="Visual Studio 14 2015") ELSE ( IF "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2017" ( SET GEN="Visual Studio 15 2017") ELSE ( SET GEN="Visual Studio 16 2019") )
22-
- cmake . -G%GEN% -DKANGARU_BUILD_EXAMPLES=true -DKANGARU_TEST=true -DKANGARU_TEST_CXX14=true -DCMAKE_CXX_FLAGS="%additional_flags%"
23-
- cmake --build .
22+
- cmake . -G%GEN% -DKANGARU_BUILD_EXAMPLES=true -DKANGARU_TEST=true -DKANGARU_TEST_CXX14=true -DCMAKE_CXX_FLAGS="%additional_flags%" -DCMAKE_BUILD_TYPE=RelWithDebInfo
23+
- cmake --build . --config RelWithDebInfo
2424

2525
test_script:
26-
- ctest .
26+
- ctest . -C RelWithDebInfo --output-on-failure
2727

0 commit comments

Comments
 (0)