source: .travis.yml @ 9d8cdb55

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

.travis.yml: move xcode8 to osx only, add iosimulator

  • Property mode set to 100644
File size: 2.2 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    - language: C
15      os: osx
[9d8cdb55]16      osx_image: xcode8
[5f9729d]17      compiler: clang
18    - python: 3.5
[95e0336]19      os: linux
20      compiler: gcc
[38b7a69]21      env: CFLAGS="-Os" WAFOPTS="--disable-samplerate --disable-sndfile"
22    - python: 3.4
[95e0336]23      os: linux
24      compiler: gcc
[38b7a69]25      env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3"
[5f9729d]26    - python: 2.7
[95e0336]27      os: linux
28      compiler: gcc
[ced47c7]29      env: CFLAGS="`dpkg-buildflags --get CFLAGS`" LDFLAGS="`dpkg-buildflags --get LDFLAGS`"
[95e0336]30    - language: C
31      os: osx
[9d8cdb55]32      osx_image: xcode8
[95e0336]33      compiler: clang
[98ce21e7]34      env: CFLAGS="-O0" WAFOPTS="--disable-avcodec --disable-accelerate"
[55d5612]35    - language: C
36      os: osx
[9d8cdb55]37      osx_image: xcode8
[55d5612]38      compiler: clang
[ced47c7]39      env: WAFOPTS="--enable-fat --disable-avcodec" HAVE_AUBIO_DOUBLE=1
[55d5612]40    - language: C
41      os: osx
[9d8cdb55]42      osx_image: xcode8
[55d5612]43      compiler: clang
[38b7a69]44      env: WAFOPTS="--with-target-platform=ios --disable-avcodec" AUBIO_NOTESTS=1
[9d8cdb55]45    - language: C
46      os: osx
47      osx_image: xcode8
48      compiler: clang
49      env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec" AUBIO_NOTESTS=1
[b8454c74]50
[51d0a3c]51# use trusty
[75023b6]52dist: trusty
[22b0807]53sudo: required
[75023b6]54
[082a1cf]55addons:
56  apt:
57    packages:
58    - bzip2
[75023b6]59    - libavcodec-dev
60    - libavformat-dev
61    - libavresample-dev
62    - libavutil-dev
[082a1cf]63    - libsndfile1-dev
64    - libsamplerate-dev
65    - libjack-dev
66    - libasound2-dev
67    - libfftw3-dev
[05c54ff]68    - sox
69
[fe5ff6d]70before_install:
[e6c83dc]71   - |
72     if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
73       brew update
74       brew install sox
[f4a5d37]75       brew install ffmpeg
[e6c83dc]76       export PATH="$HOME/Library/Python/2.7/bin/:$PATH"
77     fi;
78
[323d330]79install:
[7a1bbbd]80  - travis_retry pip install --upgrade pip
81  - travis_retry make getwaf expandwaf deps_python
[e12d05f]82  - which pip
83  - pip --version
[323d330]84
[bf45eb5]85script:
[797435f]86  - make create_test_sounds
[5b52a54]87  - |
88    if [[ -z "$AUBIO_NOTESTS" ]]; then
[38b7a69]89      make test_lib_python_clean
90      make test_python_only_clean
91    else
92      make test_lib_only_clean
93    fi;
[2d0e3fc]94
95notifications:
96    irc:
97        channels:
98            - "irc.freenode.org#aubio"
99        use_notice: true
Note: See TracBrowser for help on using the repository browser.