Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    r89bc6f4 rbec1396  
    33matrix:
    44  include:
     5    - python: 3.6
     6      os: linux
     7      compiler: gcc
    58    - python: 3.5
    69      os: linux
    710      compiler: gcc
    8     - python: 3.4
    9       os: linux
    10       compiler: gcc
     11      env: WAFOPTS="--build-type=debug"
    1112    - python: 2.7
    1213      os: linux
    1314      compiler: gcc
    14     - language: C
    15       os: osx
    16       osx_image: xcode8
    17       compiler: clang
    18     - python: 3.5
     15    - python: "pypy3.5"
    1916      os: linux
    2017      compiler: gcc
    21       env: CFLAGS="-Os" WAFOPTS="--disable-samplerate --disable-sndfile"
    22     - python: 3.4
     18      env: CFLAGS="-Os" WAFOPTS="--disable-avcodec"
     19    - python: 3.6
     20      os: linux
     21      compiler: gcc
     22      env: CFLAGS="-Os" WAFOPTS="--disable-samplerate"
     23    - python: 3.5
    2324      os: linux
    2425      compiler: gcc
     
    3031    - language: C
    3132      os: osx
    32       osx_image: xcode8
     33      compiler: clang
     34    - language: C
     35      os: osx
    3336      compiler: clang
    3437      env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate"
    3538    - language: C
    3639      os: osx
    37       osx_image: xcode8
    3840      compiler: clang
    3941      env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile"
    4042    - language: C
    4143      os: osx
    42       osx_image: xcode8
    4344      compiler: clang
    4445      env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1
    4546    - language: C
    4647      os: osx
    47       osx_image: xcode8
    48       compiler: clang
    49       env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1
    50     - language: C
    51       os: osx
    52       osx_image: xcode8.2
    53       compiler: clang
    54       env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile"
    55     - language: C
    56       os: osx
    57       osx_image: xcode8.2
    58       compiler: clang
    59       env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1
    60     - language: C
    61       os: osx
    62       osx_image: xcode8.2
    6348      compiler: clang
    6449      env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1
     
    8368    - sox
    8469    - lcov
     70  homebrew:
     71    packages:
     72    - sox
     73    - ffmpeg
     74    - libsndfile
     75    - lcov
     76    #update: true
    8577
    8678before_install:
    8779   - |
    8880     if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
    89        brew update
    90        brew install sox
    91        brew install ffmpeg
    92        brew install libsndfile
    93        brew install lcov
    9481       export PATH="$HOME/Library/Python/2.7/bin/:$PATH"
    9582     fi;
    9683
    9784install:
     85  - |
     86    if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
     87      alias pip=pip2
     88    fi;
    9889  - travis_retry pip install --upgrade pip
    9990  - travis_retry make getwaf expandwaf deps_python
    10091  - which pip
    10192  - pip --version
    102   - pip install python-coveralls
    103   - gem install coveralls-lcov
     93  - pip install coverage
    10494
    10595script:
     
    116106  - |
    117107    if [[ -z "$AUBIO_NOTESTS" ]]; then
    118       # upload lcov coverage to coveralls.io
    119       coveralls-lcov build/coverage.info
    120       # upload python coverage
    121       #coveralls
    122108      # upload to codecov
    123109      bash <(curl -s https://codecov.io/bash)
Note: See TracChangeset for help on using the changeset viewer.