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 | - language: C |
---|
15 | os: osx |
---|
16 | osx_image: xcode8 |
---|
17 | compiler: clang |
---|
18 | - python: 3.5 |
---|
19 | os: linux |
---|
20 | compiler: gcc |
---|
21 | env: CFLAGS="-Os" WAFOPTS="--disable-samplerate --disable-sndfile" |
---|
22 | - python: 3.4 |
---|
23 | os: linux |
---|
24 | compiler: gcc |
---|
25 | env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3" |
---|
26 | - python: 2.7 |
---|
27 | os: linux |
---|
28 | compiler: gcc |
---|
29 | env: CFLAGS="`dpkg-buildflags --get CFLAGS`" LDFLAGS="`dpkg-buildflags --get LDFLAGS`" |
---|
30 | - language: C |
---|
31 | os: osx |
---|
32 | osx_image: xcode8 |
---|
33 | compiler: clang |
---|
34 | env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate" |
---|
35 | - language: C |
---|
36 | os: osx |
---|
37 | osx_image: xcode8 |
---|
38 | compiler: clang |
---|
39 | env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile" |
---|
40 | - language: C |
---|
41 | os: osx |
---|
42 | osx_image: xcode8 |
---|
43 | compiler: clang |
---|
44 | env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1 |
---|
45 | - language: C |
---|
46 | os: osx |
---|
47 | osx_image: xcode8 |
---|
48 | compiler: clang |
---|
49 | env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1 |
---|
50 | - language: C |
---|
51 | os: osx |
---|
52 | osx_image: xcode8.2 |
---|
53 | compiler: clang |
---|
54 | env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile" |
---|
55 | - language: C |
---|
56 | os: osx |
---|
57 | osx_image: xcode8.2 |
---|
58 | compiler: clang |
---|
59 | env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1 |
---|
60 | - language: C |
---|
61 | os: osx |
---|
62 | osx_image: xcode8.2 |
---|
63 | compiler: clang |
---|
64 | env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile" AUBIO_NOTESTS=1 |
---|
65 | |
---|
66 | # use trusty |
---|
67 | dist: trusty |
---|
68 | sudo: required |
---|
69 | |
---|
70 | addons: |
---|
71 | apt: |
---|
72 | packages: |
---|
73 | - bzip2 |
---|
74 | - libavcodec-dev |
---|
75 | - libavformat-dev |
---|
76 | - libavresample-dev |
---|
77 | - libavutil-dev |
---|
78 | - libsndfile1-dev |
---|
79 | - libsamplerate-dev |
---|
80 | - libjack-dev |
---|
81 | - libasound2-dev |
---|
82 | - libfftw3-dev |
---|
83 | - sox |
---|
84 | - lcov |
---|
85 | |
---|
86 | before_install: |
---|
87 | - | |
---|
88 | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then |
---|
89 | brew update |
---|
90 | brew install sox |
---|
91 | brew install ffmpeg |
---|
92 | brew install libsndfile |
---|
93 | brew install lcov |
---|
94 | export PATH="$HOME/Library/Python/2.7/bin/:$PATH" |
---|
95 | fi; |
---|
96 | |
---|
97 | install: |
---|
98 | - travis_retry pip install --upgrade pip |
---|
99 | - travis_retry make getwaf expandwaf deps_python |
---|
100 | - which pip |
---|
101 | - pip --version |
---|
102 | - pip install python-coveralls |
---|
103 | - gem install coveralls-lcov |
---|
104 | |
---|
105 | script: |
---|
106 | - make create_test_sounds |
---|
107 | - | |
---|
108 | if [[ -z "$AUBIO_NOTESTS" ]]; then |
---|
109 | make test_lib_python_clean |
---|
110 | make coverage |
---|
111 | else |
---|
112 | make test_lib_only_clean |
---|
113 | fi; |
---|
114 | |
---|
115 | after_success: |
---|
116 | - | |
---|
117 | if [[ -z "$AUBIO_NOTESTS" ]]; then |
---|
118 | # upload lcov coverage to coveralls.io |
---|
119 | coveralls-lcov build/coverage.info |
---|
120 | # upload python coverage |
---|
121 | #coveralls |
---|
122 | # upload to codecov |
---|
123 | bash <(curl -s https://codecov.io/bash) |
---|
124 | fi |
---|
125 | |
---|
126 | notifications: |
---|
127 | irc: |
---|
128 | channels: |
---|
129 | - "irc.freenode.org#aubio" |
---|
130 | use_notice: true |
---|
131 | webhooks: |
---|
132 | urls: |
---|
133 | - https://webhooks.gitter.im/e/81e7733a5b1d977854b4 |
---|
134 | on_success: change # options: [always|never|change] default: always |
---|
135 | on_failure: always # options: [always|never|change] default: always |
---|
136 | on_start: never # options: [always|never|change] default: always |
---|