Home | History | Annotate | Download | only in curl
      1 os:
      2   - linux
      3   - osx
      4 
      5 sudo: false
      6 
      7 language: c
      8 
      9 install:
     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 
     14 before_script:
     15   - ./buildconf
     16 
     17 script: ./configure --enable-debug && make && make test-full
     18 
     19 compiler:
     20   - clang
     21   - gcc
     22 
     23 notifications:
     24   email: false
     25