cannam@150: dist: cannam@150: - trusty 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@236: - qt5-default libsord-dev 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@150: - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) cannam@150: - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) cannam@239: - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 sord ; 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@150: - sudo pip install jsonschema cannam@150: cannam@150: script: cannam@155: - VAMP_PATH=$(pwd)/../vamp-plugin-sdk/examples ./test.sh cannam@150: