comparison .travis.yml @ 498:a87e1bcce7b0

Update before install; seems to be necessary (based on other projects) to avoid recent Ruby-related error
author Chris Cannam
date Tue, 10 Oct 2017 13:53:48 +0100
parents 286240e6d397
children
comparison
equal deleted inserted replaced
497:5d9af3140f05 498:a87e1bcce7b0
16 packages: 16 packages:
17 - libsndfile-dev 17 - libsndfile-dev
18 18
19 before_install: 19 before_install:
20 - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-test-plugin ) 20 - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-test-plugin )
21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install libsndfile ; fi 21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi
22 22
23 script: 23 script:
24 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f build/Makefile.osx test ; else ./test/run-test-plugin-regression.sh ; fi 24 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f build/Makefile.osx test ; else ./test/run-test-plugin-regression.sh ; fi
25 25