1os: 2 - linux 3 - osx 4 5sudo: false 6 7language: c 8 9install: 10 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update > /dev/null; fi 11 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew reinstall -s libtool > /dev/null; fi 12 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install openssl libidn rtmpdump libssh2 c-ares libmetalink libressl nghttp2; fi 13 14before_script: 15 - ./buildconf 16 17script: ./configure --enable-debug && make && make test-full 18 19compiler: 20 - clang 21 - gcc 22 23notifications: 24 email: false 25