summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2015-11-15 22:03:02 -0800
committerAlan Antonuk <alan.antonuk@gmail.com>2015-11-27 22:01:24 -0800
commitf6537eb4ee3da1a1e8ef386b4368b566b2a7d40e (patch)
tree30c198e7a7c22c38cc22a67ebf871b15107cb5bd
parent103ab6fc51da820978a96eb24c9d3e9bb5c6f871 (diff)
downloadrabbitmq-c-f6537eb4ee3da1a1e8ef386b4368b566b2a7d40e.tar.gz
CI: Enable OpenSSL for appveyor builds.
-rw-r--r--appveyor.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index b3a7958..fe71485 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -4,10 +4,16 @@ version: '{build}'
environment:
matrix:
- GENERATOR: Visual Studio 12 Win64
+ BITS: 64
- GENERATOR: Visual Studio 12
+ BITS: 32
+
+install:
+ - ps: Start-FileDownload "http://slproweb.com/download/Win${env:BITS}OpenSSL-1_0_2d.exe"
+ - Win%BITS%OpenSSL-1_0_2d.exe /silent /verysilent /sp- /suppressmsgboxes /dir="c:\OpenSSL"
before_build:
- - cmake -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DBUILD_TESTS=ON -DENABLE_SSL_SUPPORT=False -G"%GENERATOR%" .
+ - cmake -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DBUILD_TESTS=ON -DENABLE_SSL_SUPPORT=True -G"%GENERATOR%" .
build:
project: ALL_BUILD.vcxproj