source:
.travis.yml
@
389f903
Last change on this file since 389f903 was 41b985f, checked in by , 8 years ago | |
---|---|
|
|
File size: 3.2 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 |
[ec6731c] | 12 | os: linux |
[dcbea24] | 13 | compiler: gcc |
[1f8061c] | 14 | - language: C |
15 | os: osx | |
[9d8cdb55] | 16 | osx_image: xcode8 |
[3581fb5] | 17 | compiler: clang |
[5f9729d] | 18 | - python: 3.5 |
[95e0336] | 19 | os: linux |
20 | compiler: gcc | |
[38b7a69] | 21 | env: CFLAGS="-Os" WAFOPTS="--disable-samplerate --disable-sndfile" |
[95e0336] | 22 | - python: 3.4 |
23 | os: linux | |
24 | compiler: gcc | |
[38b7a69] | 25 | env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3" |
[5f9729d] | 26 | - python: 2.7 |
[95e0336] | 27 | os: linux |
28 | compiler: gcc | |
[ced47c7] | 29 | env: CFLAGS="`dpkg-buildflags --get CFLAGS`" LDFLAGS="`dpkg-buildflags --get LDFLAGS`" |
[95e0336] | 30 | - language: C |
31 | os: osx | |
[9d8cdb55] | 32 | osx_image: xcode8 |
[95e0336] | 33 | compiler: clang |
[875d9d1] | 34 | env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate" |
[95e0336] | 35 | - language: C |
36 | os: osx | |
[9d8cdb55] | 37 | osx_image: xcode8 |
[95e0336] | 38 | compiler: clang |
[875d9d1] | 39 | env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile" |
[55d5612] | 40 | - language: C |
41 | os: osx | |
[9d8cdb55] | 42 | osx_image: xcode8 |
[55d5612] | 43 | compiler: clang |
[41b985f] | 44 | env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1 |
[55d5612] | 45 | - language: C |
46 | os: osx | |
[9d8cdb55] | 47 | osx_image: xcode8 |
[55d5612] | 48 | compiler: clang |
[41b985f] | 49 | env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1 |
[875d9d1] | 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 | |
[b8454c74] | 65 | |
[51d0a3c] | 66 | # use trusty |
[75023b6] | 67 | dist: trusty |
[22b0807] | 68 | sudo: required |
[b8454c74] | 69 | |
[082a1cf] | 70 | addons: |
71 | apt: | |
72 | packages: | |
73 | - bzip2 | |
[75023b6] | 74 | - libavcodec-dev |
75 | - libavformat-dev | |
76 | - libavresample-dev | |
77 | - libavutil-dev | |
[082a1cf] | 78 | - libsndfile1-dev |
79 | - libsamplerate-dev | |
80 | - libjack-dev | |
81 | - libasound2-dev | |
82 | - libfftw3-dev | |
[c2d076b] | 83 | - librubberband-dev |
[05c54ff] | 84 | - sox |
85 | ||
[fe5ff6d] | 86 | before_install: |
[e6c83dc] | 87 | - | |
88 | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then | |
89 | brew update | |
90 | brew install sox | |
[f4a5d37] | 91 | brew install ffmpeg |
[875d9d1] | 92 | brew install libsndfile |
[41b985f] | 93 | brew install libsamplerate |
94 | brew install rubberband | |
[e6c83dc] | 95 | export PATH="$HOME/Library/Python/2.7/bin/:$PATH" |
96 | fi; | |
97 | ||
[323d330] | 98 | install: |
[7a1bbbd] | 99 | - travis_retry pip install --upgrade pip |
100 | - travis_retry make getwaf expandwaf deps_python | |
[e12d05f] | 101 | - which pip |
102 | - pip --version | |
[323d330] | 103 | |
[bf45eb5] | 104 | script: |
[797435f] | 105 | - make create_test_sounds |
[5b52a54] | 106 | - | |
107 | if [[ -z "$AUBIO_NOTESTS" ]]; then | |
[38b7a69] | 108 | make test_lib_python_clean |
109 | make test_python_only_clean | |
110 | else | |
111 | make test_lib_only_clean | |
112 | fi; | |
[2d0e3fc] | 113 | |
114 | notifications: | |
115 | irc: | |
116 | channels: | |
117 | - "irc.freenode.org#aubio" | |
118 | use_notice: true | |
[dae3292] | 119 | webhooks: |
120 | urls: | |
121 | - https://webhooks.gitter.im/e/81e7733a5b1d977854b4 | |
122 | on_success: change # options: [always|never|change] default: always | |
123 | on_failure: always # options: [always|never|change] default: always | |
124 | on_start: never # options: [always|never|change] default: always |
Note: See TracBrowser
for help on using the repository browser.