To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .travis.yml

History | View | Annotate | Download (457 Bytes)

1 488:286240e6d397 Chris
dist:
2
  - trusty
3
4
language:
5
  - cpp
6
7
sudo:
8
  - false
9
10
os:
11
  - linux
12
  - osx
13
14
addons:
15
  apt:
16
    packages:
17
      - libsndfile-dev
18
19
before_install:
20
  - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-test-plugin )
21 498:a87e1bcce7b0 Chris
  - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi
22 488:286240e6d397 Chris
23
script:
24
  - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f build/Makefile.osx test ; else ./test/run-test-plugin-regression.sh ; fi