From 20166d2b4fdeef6af84eec829e7642d442c74d64 Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Tue, 5 Sep 2017 01:12:32 +0300 Subject: [PATCH] Build and test Debug configuration too --- appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 0c60b67..0d5e86b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,9 @@ before_build: - cmake . build_script: + - msbuild tinyxml2.sln /m /p:Configuration=Debug /t:ALL_BUILD - msbuild tinyxml2.sln /m /p:Configuration=Release /t:ALL_BUILD - - cd Release + - cd %APPVEYOR_BUILD_FOLDER%\Debug + - xmltest.exe + - cd %APPVEYOR_BUILD_FOLDER%\Release - xmltest.exe