source:
.travis.yml
@
5b52a54
Last change on this file since 5b52a54 was 5b52a54, checked in by , 8 years ago | |
---|---|
|
|
File size: 1.7 KB |
Rev | Line | |
---|---|---|
[d13f0bb] | 1 | language: python |
[bf45eb5] | 2 | |
[ec6731c] | 3 | matrix: |
4 | include: | |
[5f9729d] | 5 | - python: 3.5 |
[ec6731c] | 6 | os: linux |
7 | compiler: gcc | |
8 | - python: 3.4 | |
9 | os: linux | |
10 | compiler: gcc | |
[95e0336] | 11 | - python: 2.7 |
12 | os: linux | |
13 | compiler: gcc | |
[5f9729d] | 14 | - language: C |
15 | os: osx | |
16 | compiler: clang | |
17 | - python: 3.5 | |
[95e0336] | 18 | os: linux |
19 | compiler: gcc | |
[38b7a69] | 20 | env: CFLAGS="-Os" WAFOPTS="--disable-samplerate --disable-sndfile" |
21 | - python: 3.4 | |
[95e0336] | 22 | os: linux |
23 | compiler: gcc | |
[38b7a69] | 24 | env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3" |
[5f9729d] | 25 | - python: 2.7 |
[95e0336] | 26 | os: linux |
27 | compiler: gcc | |
[f4a5d37] | 28 | env: HAVE_AUBIO_DOUBLE=1 |
[95e0336] | 29 | - language: C |
30 | os: osx | |
31 | compiler: clang | |
[dd93e80] | 32 | env: WAFOPTS="--disable-avcodec --disable-accelerate" |
[55d5612] | 33 | - language: C |
34 | os: osx | |
35 | compiler: clang | |
[f4a5d37] | 36 | env: WAFOPTS="--enable-fat --disable-avcodec" |
[55d5612] | 37 | - language: C |
38 | os: osx | |
39 | compiler: clang | |
[38b7a69] | 40 | env: WAFOPTS="--with-target-platform=ios --disable-avcodec" AUBIO_NOTESTS=1 |
[b8454c74] | 41 | |
[082a1cf] | 42 | addons: |
43 | apt: | |
44 | packages: | |
45 | - bzip2 | |
46 | - libsndfile1-dev | |
47 | - libsamplerate-dev | |
48 | - libjack-dev | |
49 | - libasound2-dev | |
50 | - libfftw3-dev | |
[05c54ff] | 51 | - sox |
52 | ||
[fe5ff6d] | 53 | before_install: |
[e6c83dc] | 54 | - | |
55 | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then | |
56 | brew update | |
57 | brew install sox | |
[f4a5d37] | 58 | brew install ffmpeg |
[e6c83dc] | 59 | export PATH="$HOME/Library/Python/2.7/bin/:$PATH" |
60 | fi; | |
61 | ||
[323d330] | 62 | install: |
[7a1bbbd] | 63 | - travis_retry pip install --upgrade pip |
64 | - travis_retry make getwaf expandwaf deps_python | |
[e12d05f] | 65 | - which pip |
66 | - pip --version | |
[323d330] | 67 | |
[bf45eb5] | 68 | script: |
[797435f] | 69 | - make create_test_sounds |
[5b52a54] | 70 | - | |
71 | if [[ -z "$AUBIO_NOTESTS" ]]; then | |
[38b7a69] | 72 | make test_lib_python_clean |
73 | make test_python_only_clean | |
74 | else | |
75 | make test_lib_only_clean | |
76 | fi; | |
[2d0e3fc] | 77 | |
78 | notifications: | |
79 | irc: | |
80 | channels: | |
81 | - "irc.freenode.org#aubio" | |
82 | use_notice: true |
Note: See TracBrowser
for help on using the repository browser.