language: python matrix: include: - name: "Linux Python 3.8" python: 3.8 os: linux - name: "Linux Python 3.6" python: 3.6 os: linux env: WAFOPTS="--build-type=debug" - name: "Linux Python 2.7" python: 2.7 os: linux - name: "Linux Python pypy3" python: "pypy3" os: linux - name: "Linux (fftw3, no other deps)" python: 3.8 os: linux env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3 --disable-avcodec --disable-samplerate" - python: "Linux (default debflags)" os: linux env: CFLAGS="`dpkg-buildflags --get CFLAGS`" LDFLAGS="`dpkg-buildflags --get LDFLAGS`" - name: "macOS (xcode11)" language: shell os: osx osx_image: xcode11 - name: "macOS (xcode12)" language: shell os: osx osx_image: xcode11 - name: "macOS (xcode10, noopt, nodeps)" env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate --disable-avcodec --disable-sndfile --disable-samplerate" os: osx osx_image: xcode11 - name: "iOS" language: shell os: osx env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile --disable-samplerate" AUBIO_NOTESTS=1 - name: "iOSSimulator" language: shell os: osx env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile --disable-samplerate" AUBIO_NOTESTS=1 - name: "Python 3.8.0 on windows" language: shell os: windows # use trusty dist: trusty sudo: required addons: apt: packages: - bzip2 - libavcodec-dev - libavformat-dev - libavresample-dev - libavutil-dev - libsndfile1-dev - libsamplerate-dev - libjack-dev - libasound2-dev - libfftw3-dev - sox - lcov homebrew: packages: - sox - ffmpeg - libsndfile - lcov update: true install: - python -m pip install --upgrade pip - travis_retry make getwaf expandwaf deps_python - which pip - pip --version - pip install coverage script: - make create_test_sounds - | if [[ -z "$AUBIO_NOTESTS" ]]; then make test_lib_python_clean make coverage else make test_lib_only_clean fi; after_success: - | if [[ -z "$AUBIO_NOTESTS" ]]; then # upload to codecov bash <(curl -s https://codecov.io/bash) fi notifications: irc: channels: - "irc.freenode.org#aubio" use_notice: true webhooks: urls: - https://webhooks.gitter.im/e/81e7733a5b1d977854b4 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always