You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
496 B
24 lines
496 B
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 reinstall libtool > /dev/null; fi |
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install openssl libidn rtmpdump libssh2 c-ares libmetalink libressl nghttp2; fi |
|
|
|
before_script: |
|
- ./buildconf |
|
|
|
script: ./configure --enable-debug && make && make test-full |
|
|
|
compiler: |
|
- clang |
|
- gcc |
|
|
|
notifications: |
|
email: false
|
|
|