comparison .travis.yml @ 96:4e5de05b6e71

Ensure system Python is used
author Chris Cannam
date Tue, 15 Jan 2019 13:54:12 +0000
parents 655238a55a45
children
comparison
equal deleted inserted replaced
95:655238a55a45 96:4e5de05b6e71
20 - python-numpy 20 - python-numpy
21 21
22 before_install: 22 before_install:
23 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi 23 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi
24 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk ; cd vamp-plugin-sdk ; make -f build/Makefile.osx ) ; fi 24 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk ; cd vamp-plugin-sdk ; make -f build/Makefile.osx ) ; fi
25 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:$PWD/../vamp-plugin-sdk/host ; fi 25 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=/usr/bin:$PATH:$PWD/../vamp-plugin-sdk/host ; fi
26 26
27 script: 27 script:
28 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f Makefile.osx ; else make -f Makefile.linux ; fi 28 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f Makefile.osx ; else make -f Makefile.linux ; fi
29 - VAMP_PATH=".:Example VamPy plugins" vamp-simple-host -l 29 - VAMP_PATH=".:Example VamPy plugins" vamp-simple-host -l
30 30