Install Open SSL dependency before building

This commit is contained in:
Antoine Gersant 2017-06-03 19:26:31 -07:00
parent 7e6ddc233c
commit 375a452a8c

View file

@ -102,6 +102,10 @@ matrix:
# For simple configurations, instead of using the build matrix, you can simply set the
# default-toolchain and default-host manually here.
install:
#OpenSSL install
- appveyor DownloadFile https://slproweb.com/download/Win64OpenSSL-1_1_0f.exe
- ps: Start-Process Win64OpenSSL-1_1_0f.exe -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes" -Wait
#Rust install
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain %channel% --default-host %target%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin