.travis.yml 413 B

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