Commit c2b12985 authored by Ian Craggs's avatar Ian Craggs

Add Travis install of OpenSSL

parent 16cfc0cc
...@@ -10,3 +10,6 @@ os: ...@@ -10,3 +10,6 @@ os:
script: script:
- make - make
before_install:
- ./travis-install.sh
#!/bin/bash
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo apt-get update -qq
sudo apt-get install -y libssl-dev
fi
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update
brew install openssl
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment