annotate .travis.yml @ 501:90571dcc371a vamp-kiss-naming

Extensively rename things in the KissFFT headers to use a Vamp prefix. The motivation is not to change anything about the Vamp SDK library builds, but to avoid confusion in case any other code (for example that pulls in the Vamp SDK as part of a wider project definition) accidentally includes these headers instead of, or as well as, some other copy of KissFFT.
author Chris Cannam
date Tue, 30 Jan 2018 09:56:46 +0000
parents a87e1bcce7b0
children
rev   line source
Chris@488 1 dist:
Chris@488 2 - trusty
Chris@488 3
Chris@488 4 language:
Chris@488 5 - cpp
Chris@488 6
Chris@488 7 sudo:
Chris@488 8 - false
Chris@488 9
Chris@488 10 os:
Chris@488 11 - linux
Chris@488 12 - osx
Chris@488 13
Chris@488 14 addons:
Chris@488 15 apt:
Chris@488 16 packages:
Chris@488 17 - libsndfile-dev
Chris@488 18
Chris@488 19 before_install:
Chris@488 20 - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-test-plugin )
Chris@498 21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi
Chris@488 22
Chris@488 23 script:
Chris@488 24 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f build/Makefile.osx test ; else ./test/run-test-plugin-regression.sh ; fi
Chris@488 25