summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Raad <Marcel.Raad@teamviewer.com>2018-10-05 13:09:24 +0200
committerMarcel Raad <Marcel.Raad@teamviewer.com>2018-10-07 15:28:58 +0200
commitd6eb28a9ad841496f84629a0fae1ad04becb41e0 (patch)
tree8e6310d317e9ea782176f845fa3a202d9cd6fbdc
parentaadf7b2293dbaee8daab84f476a0d76f40448ff8 (diff)
downloadcurl-d6eb28a9ad841496f84629a0fae1ad04becb41e0.tar.gz
AppVeyor: add WinSSL builds
Use the oldest and latest Windows SDKs for them. Also, remove all but one OpenSSL build. Closes https://github.com/curl/curl/pull/3104
-rw-r--r--appveyor.yml19
1 files changed, 11 insertions, 8 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 8f098bf18..cc98ae074 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -4,42 +4,44 @@ environment:
matrix:
- PRJ_GEN: "Visual Studio 9 2008"
PRJ_CFG: Release
- OPENSSL: ON
- TESTING: OFF
- SHARED: ON
- - PRJ_GEN: "Visual Studio 11 2012 Win64"
- PRJ_CFG: Release
- OPENSSL: ON
+ OPENSSL: OFF
+ WINSSL: ON
TESTING: OFF
SHARED: ON
- - PRJ_GEN: "Visual Studio 12 2013 Win64"
+ - PRJ_GEN: "Visual Studio 14 2015 Win64"
PRJ_CFG: Release
- OPENSSL: ON
+ OPENSSL: OFF
+ WINSSL: ON
TESTING: OFF
SHARED: ON
- PRJ_GEN: "Visual Studio 14 2015 Win64"
PRJ_CFG: Release
OPENSSL: ON
+ WINSSL: OFF
TESTING: OFF
SHARED: ON
- PRJ_GEN: "Visual Studio 10 2010 Win64"
PRJ_CFG: Release
OPENSSL: OFF
+ WINSSL: OFF
TESTING: ON
SHARED: OFF
- PRJ_GEN: "Visual Studio 11 2012 Win64"
PRJ_CFG: Release
OPENSSL: OFF
+ WINSSL: OFF
TESTING: ON
SHARED: OFF
- PRJ_GEN: "Visual Studio 12 2013 Win64"
PRJ_CFG: Release
OPENSSL: OFF
+ WINSSL: OFF
TESTING: ON
SHARED: OFF
- PRJ_GEN: "Visual Studio 14 2015 Win64"
PRJ_CFG: Release
OPENSSL: OFF
+ WINSSL: OFF
TESTING: ON
SHARED: OFF
@@ -47,6 +49,7 @@ build_script:
- cmake .
-G"%PRJ_GEN%"
-DCMAKE_USE_OPENSSL=%OPENSSL%
+ -DCMAKE_USE_WINSSL=%WINSSL%
-DBUILD_SHARED_LIBS=%SHARED%
-DBUILD_TESTING=%TESTING%
-DCURL_WERROR=ON