From 4a812dce670022cdda0fdcaa9796d5a90d6c34f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 23 Oct 2018 23:27:02 +0200 Subject: [PATCH] Fix Windows build Appveyor adds ssl libs to the system folder which trips pythons ssl module see https://github.com/appveyor/ci/issues/2571 --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 63ba3aec2..759bd5334 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,6 +18,8 @@ clone_depth: 1 # - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) build_script: + - del C:\Windows\System32\libssl-*.dll C:\Windows\system32\libcrypto-*.dll + - del C:\Windows\SysWOW64\libssl-*.dll C:\Windows\SysWOW64\libcrypto-*.dll - C:\msys64\usr\bin\pacman -Syuu --needed --noconfirm --noprogressbar --overwrite \\* - ps: | $env:TIME_STRING=(get-date -UFormat "%Y-%m-%d").ToString()