cannam@150: dist: cannam@291: - xenial cannam@150: cannam@150: language: cannam@150: - cpp cannam@150: cannam@150: sudo: cannam@150: - false cannam@150: cannam@150: os: cannam@150: - linux cannam@150: - osx cannam@150: cannam@150: addons: cannam@150: apt: cannam@150: packages: cannam@252: - qt5-default cannam@150: cannam@150: before_install: cannam@246: - ( cd ../ ; git clone https://github.com/piper-audio/piper ) cannam@150: - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk ) cannam@150: - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) cannam@261: - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ( cd ../capnproto ; git checkout v0.6.1 ) ; fi cannam@150: - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) cannam@150: - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) cannam@255: - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; fi cannam@252: - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi cannam@160: - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi cannam@157: - ( cd ../vamp-plugin-sdk ; if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f build/Makefile.osx sdkstatic plugins ; else ./configure --disable-programs && make sdkstatic plugins; fi ) cannam@150: cannam@150: install: cannam@257: - sudo pip2 install jsonschema cannam@150: cannam@150: script: cannam@155: - VAMP_PATH=$(pwd)/../vamp-plugin-sdk/examples ./test.sh cannam@150: