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-15 22:50:22 -0800
commit02297afe29114f5c2351fb5473cbe29f45d42bb6 (patch)
tree01483082965ace0eb421abe4236152a22bb8db58
parent2a12d8cc3f94e565a1adcdb308909cb232f08706 (diff)
downloadrabbitmq-c-win32_ssl.tar.gz
CI: Enable OpenSSL for appveyor builds.win32_ssl
-rw-r--r--appveyor.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index b3a7958..61942e2 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -6,8 +6,14 @@ environment:
- GENERATOR: Visual Studio 12 Win64
- GENERATOR: Visual Studio 12
+install:
+ - ps: Start-FileDownload 'http://slproweb.com/download/Win32OpenSSL-1_0_2d.exe'
+ - ps: Start-Process "Win32OpenSSL-1_0_2d.exe" -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes" -Wait
+ - ps: Start-FileDownload 'http://slproweb.com/download/Win64OpenSSL-1_0_2d.exe'
+ - ps: Start-Process "Win64OpenSSL-1_0_2d.exe" -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes" -Wait
+
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