ci: Add installation of openssl dependency

Change-Id: Iea19a3a617d770687b4f131a068601255a6c94cf
Refs: #3643
This commit is contained in:
Alexander Afanasyev
2016-06-15 12:35:45 -07:00
parent f5aee94f15
commit 67079664ae
+4 -2
View File
@@ -12,7 +12,8 @@ if has OSX $NODE_LABELS; then
set -x
brew update
brew upgrade
brew install boost pkg-config cryptopp $EXTRA_FLAGS
brew install boost pkg-config cryptopp openssl $EXTRA_FLAGS
brew link --force openssl
brew cleanup
fi
@@ -20,5 +21,6 @@ if has Ubuntu $NODE_LABELS; then
set -x
sudo apt-get -qq update
sudo apt-get -qq install build-essential pkg-config libboost-all-dev \
libcrypto++-dev libsqlite3-dev libpcap-dev
libcrypto++-dev libsqlite3-dev libpcap-dev \
libssl-dev
fi