From b23797ef26d376d518e4eb24faba2e4b2576980f Mon Sep 17 00:00:00 2001 From: messense Date: Sat, 4 Jul 2015 23:58:03 +0800 Subject: [PATCH] Try to fix OpenSSL issue on Windows CI --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index b98755c..0d383f7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,6 @@ install: + - ps: Start-FileDownload "http://slproweb.com/download/Win64OpenSSL-1_0_2c.exe" + - ps: Start-Process "Win64OpenSSL-1_0_2c.exe" -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes" -Wait - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe' - rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust" - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin