source: .travis.yml @ 5f9729d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampleryinfft+
Last change on this file since 5f9729d was 5f9729d, checked in by Paul Brossier <piem@piem.org>, 7 years ago

.travis.yml: shuffle order, remove duplicate, add missing opening quote

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[d13f0bb]1language: python
[bf45eb5]2
[ec6731c]3matrix:
4  include:
[5f9729d]5    - python: 3.5
[ec6731c]6      os: linux
7      compiler: gcc
8    - python: 3.4
9      os: linux
10      compiler: gcc
[95e0336]11    - python: 2.7
12      os: linux
13      compiler: gcc
[5f9729d]14      env: WAFOPTS=--enable-fftw3
15    - language: C
16      os: osx
17      compiler: clang
18    - python: 3.5
[95e0336]19      os: linux
20      compiler: gcc
[f4a5d37]21      env: HAVE_AUBIO_DOUBLE=1
[5f9729d]22    - python: 2.7
[95e0336]23      os: linux
24      compiler: gcc
[5f9729d]25      env: HAVE_AUBIO_DOUBLE=1 WAFOPTS=--enable-fftw3
26    - python: 2.7
[95e0336]27      os: linux
28      compiler: gcc
[f4a5d37]29      env: HAVE_AUBIO_DOUBLE=1
[95e0336]30    - language: C
31      os: osx
32      compiler: clang
[f4a5d37]33      env: WAFOPTS=--disable-avcodec
[55d5612]34    - language: C
35      os: osx
36      compiler: clang
[f4a5d37]37      env: WAFOPTS="--enable-fat --disable-avcodec"
[55d5612]38    - language: C
39      os: osx
40      compiler: clang
[5f9729d]41      env: WAFOPTS="--enable-fat --disable-avcodec" HAVE_AUBIO_DOUBLE=1
[b8454c74]42
[082a1cf]43addons:
44  apt:
45    packages:
46    - bzip2
47    - libsndfile1-dev
48    - libsamplerate-dev
49    - libjack-dev
50    - libasound2-dev
51    - libfftw3-dev
[05c54ff]52    - sox
53
[fe5ff6d]54before_install:
[e6c83dc]55   - |
56     if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
57       brew update
58       brew install sox
[f4a5d37]59       brew install ffmpeg
[e6c83dc]60       export PATH="$HOME/Library/Python/2.7/bin/:$PATH"
61     fi;
62
[323d330]63install:
[7a1bbbd]64  - travis_retry pip install --upgrade pip
65  - travis_retry make getwaf expandwaf deps_python
[e12d05f]66  - which pip
67  - pip --version
[323d330]68
[bf45eb5]69script:
[797435f]70  - make create_test_sounds
[4cdef00]71  - make test_lib_python_clean
72  - make test_python_only_clean
[2d0e3fc]73
74notifications:
75    irc:
76        channels:
77            - "irc.freenode.org#aubio"
78        use_notice: true
Note: See TracBrowser for help on using the repository browser.