source: .travis.yml @ 6a6cb48

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

.travis.yml: test --enable-double

  • Property mode set to 100644
File size: 1.2 KB
Line 
1language: python
2
3sudo: false
4
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
14      env: ARCH=x86_64 HAVE_DOUBLE=--enable-double
15    - python: 2.7
16      os: linux
17      compiler: gcc
18      env: ARCH=i386
19    - python: 3.4
20      os: linux
21      compiler: gcc
22      env: ARCH=x86_64
23    - python: 3.4
24      os: linux
25      compiler: gcc
26      env: ARCH=i386
27    - language: C
28      os: osx
29      compiler: clang
30      env: ARCH=x86_64
31    - language: C
32      os: osx
33      compiler: clang
34      env: ARCH=i386
35    - language: C
36      os: osx
37      compiler: gcc
38      env: ARCH=x86_64
39    - language: C
40      os: osx
41      compiler: gcc
42      env: ARCH=i386
43
44addons:
45  apt:
46    packages:
47    - bzip2
48    - libsndfile1-dev
49    - libsamplerate-dev
50    - libjack-dev
51    - libasound2-dev
52    - libfftw3-dev
53
54script:
55  - make build
56  - make build_python
57  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make test_python; fi
58  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then make test_python_osx; fi
59  - make clean_python
60  - make clean
61  - make distcheck
62
63notifications:
64    irc:
65        channels:
66            - "irc.freenode.org#aubio"
67        use_notice: true
Note: See TracBrowser for help on using the repository browser.