feature/cnnfeature/crepefeature/pitchshiftfeature/timestretchfix/ffmpeg5
Last change
on this file since 78a564b was
633400d,
checked in by Paul Brossier <piem@piem.org>, 6 years ago
|
Merge branch 'master' into feature/pitchshift
|
-
Property mode set to
100644
|
File size:
2.8 KB
|
Line | |
---|
1 | language: python |
---|
2 | |
---|
3 | matrix: |
---|
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 | - python: 3.5 |
---|
15 | os: linux |
---|
16 | compiler: gcc |
---|
17 | env: CFLAGS="-Os" WAFOPTS="--disable-samplerate --disable-sndfile" |
---|
18 | - python: 3.4 |
---|
19 | os: linux |
---|
20 | compiler: gcc |
---|
21 | env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3" |
---|
22 | - python: 2.7 |
---|
23 | os: linux |
---|
24 | compiler: gcc |
---|
25 | env: CFLAGS="`dpkg-buildflags --get CFLAGS`" LDFLAGS="`dpkg-buildflags --get LDFLAGS`" |
---|
26 | - language: C |
---|
27 | os: osx |
---|
28 | compiler: clang |
---|
29 | - language: C |
---|
30 | os: osx |
---|
31 | compiler: clang |
---|
32 | env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate" |
---|
33 | - language: C |
---|
34 | os: osx |
---|
35 | compiler: clang |
---|
36 | env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" |
---|
37 | - language: C |
---|
38 | os: osx |
---|
39 | compiler: clang |
---|
40 | env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1 |
---|
41 | - language: C |
---|
42 | os: osx |
---|
43 | compiler: clang |
---|
44 | env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1 |
---|
45 | |
---|
46 | # use trusty |
---|
47 | dist: trusty |
---|
48 | sudo: required |
---|
49 | |
---|
50 | addons: |
---|
51 | apt: |
---|
52 | packages: |
---|
53 | - bzip2 |
---|
54 | - libavcodec-dev |
---|
55 | - libavformat-dev |
---|
56 | - libavresample-dev |
---|
57 | - libavutil-dev |
---|
58 | - libsndfile1-dev |
---|
59 | - libsamplerate-dev |
---|
60 | - libjack-dev |
---|
61 | - libasound2-dev |
---|
62 | - libfftw3-dev |
---|
63 | - librubberband-dev |
---|
64 | - sox |
---|
65 | - lcov |
---|
66 | homebrew: |
---|
67 | packages: |
---|
68 | - sox |
---|
69 | - ffmpeg |
---|
70 | - libsndfile |
---|
71 | - libsamplerate |
---|
72 | - rubberband |
---|
73 | - lcov |
---|
74 | #update: true |
---|
75 | |
---|
76 | before_install: |
---|
77 | - | |
---|
78 | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then |
---|
79 | export PATH="$HOME/Library/Python/2.7/bin/:$PATH" |
---|
80 | fi; |
---|
81 | |
---|
82 | install: |
---|
83 | - | |
---|
84 | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then |
---|
85 | alias pip=pip2 |
---|
86 | fi; |
---|
87 | - travis_retry pip install --upgrade pip |
---|
88 | - travis_retry make getwaf expandwaf deps_python |
---|
89 | - which pip |
---|
90 | - pip --version |
---|
91 | |
---|
92 | script: |
---|
93 | - make create_test_sounds |
---|
94 | - | |
---|
95 | if [[ -z "$AUBIO_NOTESTS" ]]; then |
---|
96 | make test_lib_python_clean |
---|
97 | make coverage |
---|
98 | else |
---|
99 | make test_lib_only_clean |
---|
100 | fi; |
---|
101 | |
---|
102 | after_success: |
---|
103 | - | |
---|
104 | if [[ -z "$AUBIO_NOTESTS" ]]; then |
---|
105 | # upload to codecov |
---|
106 | bash <(curl -s https://codecov.io/bash) |
---|
107 | fi |
---|
108 | |
---|
109 | notifications: |
---|
110 | irc: |
---|
111 | channels: |
---|
112 | - "irc.freenode.org#aubio" |
---|
113 | use_notice: true |
---|
114 | webhooks: |
---|
115 | urls: |
---|
116 | - https://webhooks.gitter.im/e/81e7733a5b1d977854b4 |
---|
117 | on_success: change # options: [always|never|change] default: always |
---|
118 | on_failure: always # options: [always|never|change] default: always |
---|
119 | on_start: never # options: [always|never|change] default: always |
---|
Note: See
TracBrowser
for help on using the repository browser.