diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2018-10-05 13:14:23 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2018-10-07 15:29:13 +0200 |
commit | c10a424429f068beda30726e19454a39ebb62c45 (patch) | |
tree | 1d68951ad456a8c54f9d72a90da9948422e48188 | |
parent | 9f3be5672dc4dda30ab43e0152e13d714a84d762 (diff) | |
download | curl-c10a424429f068beda30726e19454a39ebb62c45.tar.gz |
AppVeyor: use Debug builds to run tests
This enables more tests.
Closes https://github.com/curl/curl/pull/3104
-rw-r--r-- | appveyor.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml index 6d7775c50..66b6d34e8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,28 +24,28 @@ environment: TESTING: OFF SHARED: ON - PRJ_GEN: "Visual Studio 10 2010 Win64" - PRJ_CFG: Release + PRJ_CFG: Debug OPENSSL: OFF WINSSL: OFF HTTP_ONLY: OFF TESTING: ON SHARED: OFF - PRJ_GEN: "Visual Studio 11 2012 Win64" - PRJ_CFG: Release + PRJ_CFG: Debug OPENSSL: OFF WINSSL: OFF HTTP_ONLY: OFF TESTING: ON SHARED: OFF - PRJ_GEN: "Visual Studio 12 2013 Win64" - PRJ_CFG: Release + PRJ_CFG: Debug OPENSSL: OFF WINSSL: OFF HTTP_ONLY: OFF TESTING: ON SHARED: OFF - PRJ_GEN: "Visual Studio 14 2015 Win64" - PRJ_CFG: Release + PRJ_CFG: Debug OPENSSL: OFF WINSSL: OFF HTTP_ONLY: OFF @@ -53,7 +53,7 @@ environment: SHARED: OFF - PRJ_GEN: "Visual Studio 14 2015 Win64" BDIR: msvc2015 - PRJ_CFG: Release + PRJ_CFG: Debug OPENSSL: OFF WINSSL: OFF HTTP_ONLY: ON @@ -69,6 +69,7 @@ build_script: -DBUILD_SHARED_LIBS=%SHARED% -DBUILD_TESTING=%TESTING% -DCURL_WERROR=ON + -DENABLE_DEBUG=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE="" -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG="" -DCMAKE_INSTALL_PREFIX="C:/CURL" |