source: .travis.yml @ 98ce21e7

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

.travis.yml: add ffmpeg and improve noopt on osx

  • Property mode set to 100644
File size: 1.8 KB
Line 
1language: python
2
3matrix:
4  include:
5    - python: 3.5
6      os: linux
7      compiler: gcc
8    - python: 3.4
9      os: linux
10      compiler: gcc
11    - python: 2.7
12      os: linux
13      compiler: gcc
14    - language: C
15      os: osx
16      compiler: clang
17    - python: 3.5
18      os: linux
19      compiler: gcc
20      env: CFLAGS="-Os" WAFOPTS="--disable-samplerate --disable-sndfile"
21    - python: 3.4
22      os: linux
23      compiler: gcc
24      env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3"
25    - python: 2.7
26      os: linux
27      compiler: gcc
28      env: CFLAGS="`dpkg-buildflags --get CFLAGS`" LDFLAGS="`dpkg-buildflags --get LDFLAGS`"
29    - language: C
30      os: osx
31      compiler: clang
32      env: CFLAGS="-O0" WAFOPTS="--disable-avcodec --disable-accelerate"
33    - language: C
34      os: osx
35      compiler: clang
36      env: WAFOPTS="--enable-fat --disable-avcodec" HAVE_AUBIO_DOUBLE=1
37    - language: C
38      os: osx
39      compiler: clang
40      env: WAFOPTS="--with-target-platform=ios --disable-avcodec" AUBIO_NOTESTS=1
41
42addons:
43  apt:
44    packages:
45    - bzip2
46    - ffmpeg
47    - libsndfile1-dev
48    - libsamplerate-dev
49    - libjack-dev
50    - libasound2-dev
51    - libfftw3-dev
52    - sox
53
54before_install:
55   - |
56     if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
57       brew update
58       brew install sox
59       brew install ffmpeg
60       export PATH="$HOME/Library/Python/2.7/bin/:$PATH"
61     fi;
62
63install:
64  - travis_retry pip install --upgrade pip
65  - travis_retry make getwaf expandwaf deps_python
66  - which pip
67  - pip --version
68
69script:
70  - make create_test_sounds
71  - |
72    if [[ -z "$AUBIO_NOTESTS" ]]; then
73      make test_lib_python_clean
74      make test_python_only_clean
75    else
76      make test_lib_only_clean
77    fi;
78
79notifications:
80    irc:
81        channels:
82            - "irc.freenode.org#aubio"
83        use_notice: true
Note: See TracBrowser for help on using the repository browser.