Mercurial > hg > piper-cpp
annotate .travis.yml @ 180:bd543e74a9bf
Correct the inspection of the JSON object in successful to look for both error and success objects, writing out an error string if neither are present. Revert error handling in readInput() for JSON.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 03 Feb 2017 11:12:27 +0000 |
parents | 3a318dc7b59e |
children | d54dab075247 |
rev | line source |
---|---|
cannam@150 | 1 dist: |
cannam@150 | 2 - trusty |
cannam@150 | 3 |
cannam@150 | 4 language: |
cannam@150 | 5 - cpp |
cannam@150 | 6 |
cannam@150 | 7 sudo: |
cannam@150 | 8 - false |
cannam@150 | 9 |
cannam@150 | 10 os: |
cannam@150 | 11 - linux |
cannam@150 | 12 - osx |
cannam@150 | 13 |
cannam@150 | 14 addons: |
cannam@150 | 15 apt: |
cannam@150 | 16 packages: |
cannam@150 | 17 - qt5-default |
cannam@150 | 18 |
cannam@150 | 19 before_install: |
cannam@151 | 20 - ( cd ../ ; git clone https://github.com/piper-audio/piper ) |
cannam@150 | 21 - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk ) |
cannam@150 | 22 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) |
cannam@150 | 23 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) |
cannam@150 | 24 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) |
cannam@150 | 25 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi |
cannam@160 | 26 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi |
cannam@157 | 27 - ( 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 | 28 |
cannam@150 | 29 install: |
cannam@150 | 30 - sudo pip install jsonschema |
cannam@150 | 31 |
cannam@150 | 32 script: |
cannam@155 | 33 - VAMP_PATH=$(pwd)/../vamp-plugin-sdk/examples ./test.sh |
cannam@150 | 34 |