From: Marcel Raad Date: Fri, 5 Oct 2018 11:09:24 +0000 (+0200) Subject: AppVeyor: add WinSSL builds X-Git-Tag: curl-7_62_0~84 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d6eb28a9ad841496f84629a0fae1ad04becb41e0;p=thirdparty%2Fcurl.git 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 --- diff --git a/appveyor.yml b/appveyor.yml index 8f098bf18d..cc98ae0745 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