From 5d2b8772b55ae26a638506670ccccdaf66c11e24 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 23 Aug 2017 11:34:13 -0400 Subject: [PATCH] Try to add AppVeyor Cmake builds for debug and release Take 2 --- .appveyor.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index c51ea98e..303c2a99 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,8 +24,8 @@ image: environment: - BUILD_MODE = CMake - BUILD_MODE = MSBuild +- BUILD_MODE = CMake +- BUILD_MODE = MSBuild # Disable build through solution file build: off @@ -44,18 +44,18 @@ test_script: if($env:configuration -eq "Debug") { - + cmake -DCMAKE_BUILD_TYPE=Debug ../ - + } else { - + cmake -DCMAKE_BUILD_TYPE=Release ../ } - make -j 2 + make -j 2 VERBOSE=1 .\cryptest.exe v