summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2015-12-30 16:24:48 -0500
committerGravatar Jason Gross <jgross@mit.edu>2015-12-30 16:24:48 -0500
commitae6d0cd9afb9e530ac75915875d16875a6392a41 (patch)
tree42744a85646b17a66d800a9ebdf21abd365894f6 /.travis.yml
parent7a9fe677efb63a25763cfb7217b49b88a21b33c1 (diff)
Also install openssl from brew on OSX in Travis
[A Google search](https://github.com/devsisters/gospdyquic/issues/1#issuecomment-102892729) suggests that the problem is that Mac OSX OpenSSL headers are broken.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 5bc39034..a93f8c7a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,6 +20,6 @@ before_install:
- if command -v apt-get &>/dev/null; then sudo apt-get install -y mlton; fi
- if command -v brew &>/dev/null; then brew update; fi
- if command -v brew &>/dev/null; then brew tap homebrew/boneyard; fi
- - if command -v brew &>/dev/null; then brew install mlton; fi
+ - if command -v brew &>/dev/null; then brew install openssl mlton; fi
script: ./autogen.sh && ./configure && make && make test