build_linux.sh: add dist arg to build binary tarball
[vamp-aubio-plugins.git] / .travis.yml
1 language: cpp 
2
3 matrix:
4   include:
5     - os: linux
6       compiler: gcc
7       env: ARCH=x86_64
8     - os: linux
9       compiler: gcc
10       env: ARCH=i386
11     - os: osx
12       compiler: clang
13       env: ARCH=x86_64
14     - os: osx
15       compiler: clang
16       env: ARCH=i386
17
18 addons:
19   apt:
20     packages:
21     - bzip2
22     - libsndfile1-dev
23     - libsamplerate-dev
24     - libjack-dev
25     - libasound2-dev
26
27 script:
28   - ./scripts/get_waf.sh
29   - ./scripts/get_aubio.sh
30   - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./scripts/get_deps_linux.sh; fi
31   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./scripts/get_deps_osx.sh; fi
32   - python waf configure
33   - python waf build -v
34
35 notifications:
36     irc:
37         channels:
38             - "irc.freenode.org#aubio"
39         use_notice: true