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-02-20 13:08:49 -0800
commit3713c2696025d12d4a499fc763571d6613c597e6 (patch)
tree7fd53aafa7f320577bfc8488197583cff0e46023
parent205b271e745478749ebec921f084b387c622c4d8 (diff)
downloadrabbitmq-c-3713c2696025d12d4a499fc763571d6613c597e6.tar.gz
CI: use appveyor's OpenSSL install.
-rw-r--r--appveyor.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 435bb12..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_2k.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%" .