Mercurial > hg > vamp-plugin-sdk
changeset 488:286240e6d397
Travis build file
| author | Chris Cannam | 
|---|---|
| date | Fri, 24 Feb 2017 09:21:19 +0000 | 
| parents | 7097dee94492 | 
| children | 7a393db13c75 | 
| files | .travis.yml | 
| diffstat | 1 files changed, 25 insertions(+), 0 deletions(-) [+] | 
line wrap: on
 line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.travis.yml Fri Feb 24 09:21:19 2017 +0000 @@ -0,0 +1,25 @@ +dist: + - trusty + +language: + - cpp + +sudo: + - false + +os: + - linux + - osx + +addons: + apt: + packages: + - libsndfile-dev + +before_install: + - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-test-plugin ) + - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install libsndfile ; fi + +script: + - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f build/Makefile.osx test ; else ./test/run-test-plugin-regression.sh ; fi +
