source: .travis.yml @ 23723d8

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

.travis.yml: no sox on osx for now

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[66a3c51]1language: python
[bf45eb5]2
[082a1cf]3sudo: false
4
[ec6731c]5matrix:
6  include:
7    - python: 2.7
8      os: linux
9      compiler: gcc
10      env: ARCH=x86_64
11    - python: 2.7
12      os: linux
13      compiler: gcc
[1f8061c]14      env: ARCH=i386
[ec6731c]15    - python: 3.4
16      os: linux
17      compiler: gcc
18      env: ARCH=x86_64
19    - python: 3.4
20      os: linux
[dcbea24]21      compiler: gcc
[1f8061c]22      env: ARCH=i386
23    - language: C
24      os: osx
[3581fb5]25      compiler: clang
26      env: ARCH=x86_64
27    - language: C
28      os: osx
29      compiler: clang
30      env: ARCH=i386
31    - language: C
32      os: osx
33      compiler: gcc
34      env: ARCH=x86_64
35    - language: C
36      os: osx
37      compiler: gcc
38      env: ARCH=i386
[95e0336]39    - python: 2.7
40      os: linux
41      compiler: gcc
42      env: ARCH=x86_64 HAVE_DOUBLE=1
43    - python: 2.7
44      os: linux
45      compiler: gcc
46      env: ARCH=i386 HAVE_DOUBLE=1
47    - python: 3.4
48      os: linux
49      compiler: gcc
50      env: ARCH=x86_64 HAVE_DOUBLE=1
51    - python: 3.4
52      os: linux
53      compiler: gcc
54      env: ARCH=i386 HAVE_DOUBLE=1
55    - language: C
56      os: osx
57      compiler: clang
58      env: ARCH=x86_64 HAVE_DOUBLE=1
59    - language: C
60      os: osx
61      compiler: clang
62      env: ARCH=i386 HAVE_DOUBLE=1
63    - language: C
64      os: osx
65      compiler: gcc
66      env: ARCH=x86_64 HAVE_DOUBLE=1
67    - language: C
68      os: osx
69      compiler: gcc
70      env: ARCH=i386 HAVE_DOUBLE=1
[b8454c74]71
[082a1cf]72addons:
73  apt:
74    packages:
75    - bzip2
76    - libsndfile1-dev
77    - libsamplerate-dev
78    - libjack-dev
79    - libasound2-dev
80    - libfftw3-dev
[05c54ff]81    - sox
82
[bf45eb5]83script:
[05c54ff]84  - make create_test_sounds
[79adbda]85  - make build
[3708c15]86  - make build_python
[1700a2d]87  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make test_python; fi
88  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then make test_python_osx; fi
[3708c15]89  - make clean_python
[6121dd4]90  - make clean
[79adbda]91  - make distcheck
[2d0e3fc]92
93notifications:
94    irc:
95        channels:
96            - "irc.freenode.org#aubio"
97        use_notice: true
Note: See TracBrowser for help on using the repository browser.