Mercurial > hg > vampy
changeset 96:4e5de05b6e71
Ensure system Python is used
author | Chris Cannam |
---|---|
date | Tue, 15 Jan 2019 13:54:12 +0000 |
parents | 655238a55a45 |
children | 2f2292b029a4 |
files | .travis.yml |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.travis.yml Tue Jan 15 13:37:45 2019 +0000 +++ b/.travis.yml Tue Jan 15 13:54:12 2019 +0000 @@ -22,7 +22,7 @@ before_install: - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi - 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 - - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:$PWD/../vamp-plugin-sdk/host ; fi + - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=/usr/bin:$PATH:$PWD/../vamp-plugin-sdk/host ; fi script: - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f Makefile.osx ; else make -f Makefile.linux ; fi