source: .travis.yml @ 0799252

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

.travis.yml: use new test targets

  • Property mode set to 100644
File size: 1.9 KB
Line 
1language: python
2
3matrix:
4  include:
5    - python: 2.7
6      os: linux
7      compiler: gcc
8      env: ARCH=x86_64
9    - python: 2.7
10      os: linux
11      compiler: gcc
12      env: ARCH=i386
13    - python: 3.4
14      os: linux
15      compiler: gcc
16      env: ARCH=x86_64
17    - python: 3.4
18      os: linux
19      compiler: gcc
20      env: ARCH=i386 WAFOPTS=--enable-fftw3f
21    - language: C
22      os: osx
23      compiler: clang
24      env: ARCH=x86_64
25    - language: C
26      os: osx
27      compiler: clang
28      env: ARCH=i386
29    - python: 2.7
30      os: linux
31      compiler: gcc
32      env: ARCH=x86_64 HAVE_DOUBLE=1 WAFOPTS=--enable-fftw3
33    - python: 2.7
34      os: linux
35      compiler: gcc
36      env: ARCH=i386 HAVE_DOUBLE=1
37    - python: 3.4
38      os: linux
39      compiler: gcc
40      env: ARCH=x86_64 HAVE_DOUBLE=1
41    - python: 3.4
42      os: linux
43      compiler: gcc
44      env: ARCH=i386 HAVE_DOUBLE=1
45    - language: C
46      os: osx
47      compiler: clang
48      env: ARCH=x86_64 HAVE_DOUBLE=1
49    - language: C
50      os: osx
51      compiler: clang
52      env: ARCH=i386 HAVE_DOUBLE=1
53    - language: C
54      os: osx
55      compiler: clang
56      env: ARCH=x86_64 WAFOPTS=--enable-fat
57    - language: C
58      os: osx
59      compiler: clang
60      env: ARCH=i386 WAFOPTS=--enable-fat
61
62addons:
63  apt:
64    packages:
65    - bzip2
66    - libsndfile1-dev
67    - libsamplerate-dev
68    - libjack-dev
69    - libasound2-dev
70    - libfftw3-dev
71    - sox
72
73before_install:
74   - |
75     if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
76       brew update
77       brew install sox
78       export PATH="$HOME/Library/Python/2.7/bin/:$PATH"
79     fi;
80
81
82install:
83  - travis_retry pip install --upgrade pip nose2
84  - which pip
85  - pip --version
86
87script:
88  - make create_test_sounds
89  - make test_lib_python_clean
90  - make test_python_only_clean
91
92notifications:
93    irc:
94        channels:
95            - "irc.freenode.org#aubio"
96        use_notice: true
Note: See TracBrowser for help on using the repository browser.