comparison .travis.yml @ 155:7d58d25f687f

Ensure example plugins are available
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 18:41:25 +0000
parents 6ccb195d6de6
children 5699fca64251
comparison
equal deleted inserted replaced
154:80d85794d8cd 155:7d58d25f687f
17 - qt5-default 17 - qt5-default
18 18
19 before_install: 19 before_install:
20 - ( cd ../ ; git clone https://github.com/piper-audio/piper ) 20 - ( cd ../ ; git clone https://github.com/piper-audio/piper )
21 - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk ) 21 - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk )
22 - ( cd ../vamp-plugin-sdk ; ./configure --disable-programs && make sdkstatic ) 22 - ( cd ../vamp-plugin-sdk ; ./configure --disable-programs && make sdkstatic plugins )
23 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) 23 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto )
24 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) 24 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i )
25 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) 25 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install )
26 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi 26 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi
27 27
28 install: 28 install:
29 - sudo pip install jsonschema 29 - sudo pip install jsonschema
30 30
31 script: 31 script:
32 - ./test.sh 32 - VAMP_PATH=$(pwd)/../vamp-plugin-sdk/examples ./test.sh
33 33