diff options
author | Jactry Zeng <jactry92@gmail.com> | 2015-08-21 12:10:59 +0800 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-08-21 12:48:52 +0200 |
commit | 1d89fd983a1ce454aa9fe1a9b0fc452b4bfccd7b (patch) | |
tree | 564585974834940dba738820848d67f8eafe0d72 /.travis.yml | |
parent | b3c7f5159aef1981140612bce6371f8cb6e3f594 (diff) | |
download | curl-1d89fd983a1ce454aa9fe1a9b0fc452b4bfccd7b.tar.gz |
travis.yml: Add OS X testbot.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 914cb20a1..c76d10c51 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,15 @@ +os: + - linux + - osx + sudo: false language: c +install: + - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update > /dev/null; fi + - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install openssl libidn rtmpdump libssh2 c-ares libmetalink libressl nghttp2; fi + before_script: - ./buildconf |