From d6eb28a9ad841496f84629a0fae1ad04becb41e0 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Fri, 5 Oct 2018 13:09:24 +0200 Subject: [PATCH] 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 --- appveyor.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 8f098bf18d26ee..cc98ae07457adc 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