comparison .travis.yml @ 94:e28f67bc9124

Travis CI file
author Chris Cannam
date Tue, 15 Jan 2019 13:19:02 +0000
parents
children 655238a55a45
comparison
equal deleted inserted replaced
93:161ed1fb016b 94:e28f67bc9124
1 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 - vamp-plugin-sdk
19
20 before_install:
21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi
22 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk ; cd vamp-plugin-sdk ; make -f build/Makefile.osx ) ; fi
23 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:$PWD/../vamp-plugin-sdk/host ; fi
24
25 script:
26 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f Makefile.osx ; else make -f Makefile.linux ; fi
27 - VAMP_PATH=".:Example VamPy plugins" vamp-simple-host -l
28
29
30
31