comparison .travis.yml @ 257:944e699a4068

pip2 rather than mere pip seems to be necessary on OSX now
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 02 Feb 2018 11:44:57 +0000
parents e8a5d7443b09
children 5cd830e77abf
comparison
equal deleted inserted replaced
256:0e3a36ba8736 257:944e699a4068
26 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi 26 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi
27 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi 27 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi
28 - ( 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 ) 28 - ( 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 )
29 29
30 install: 30 install:
31 - sudo pip install jsonschema 31 - sudo pip2 install jsonschema
32 32
33 script: 33 script:
34 - VAMP_PATH=$(pwd)/../vamp-plugin-sdk/examples ./test.sh 34 - VAMP_PATH=$(pwd)/../vamp-plugin-sdk/examples ./test.sh
35 35