summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2017-01-08 21:02:25 -0800
committerAlan Antonuk <alan.antonuk@gmail.com>2017-01-08 21:02:25 -0800
commit13485c24bebe0c9d13f5fb59c618647fa8e62987 (patch)
treec8e618e1bfac06cb179b996f9613fba2892bc543
parent2ca1774489328cde71195f5fa95e17cf3a80cb8a (diff)
downloadrabbitmq-c-ci.tar.gz
CI: use appveyor's OpenSSL install.ci
-rw-r--r--appveyor.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 1643549..7be4e8f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -14,21 +14,6 @@ environment:
cache:
- c:\deps -> appveyor.yml
-install:
- - ps: $file = "Win${env:BITS}OpenSSL-1_0_2j.exe"
- - ps: $dir = "c:\deps"
- - ps: $exists = Test-Path "$dir\$file"
- - ps: >-
- If ($exists -ne $True) {
- Write-Host "Downloading: $dir\$file."
- New-Item -Path $dir -type directory -force
- Start-FileDownload "http://slproweb.com/download/$file" -FileName "$dir\$file"
- } Else {
- Write-Host "Reusing cached: $dir\$file."
- }
- - ps: >-
- & "$dir\$file" /silent /verysilent /sp- /suppressmsgboxes /dir="c:\OpenSSL"
-
before_build:
- cmake -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DBUILD_TESTS=ON -DENABLE_SSL_SUPPORT=True -G"%GENERATOR%" .