Files
librubberband/.travis.yml
Chris Cannam c67557181b + ios build
2018-05-15 18:43:39 +01:00

29 lines
494 B
YAML

dist:
- trusty
language:
- cpp
sudo:
- false
os:
- linux
- osx
addons:
apt:
packages:
- libsndfile-dev
- libsamplerate-dev
- libfftw3-dev
- vamp-plugin-sdk
- ladspa-sdk
before_install:
- if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi
script:
- if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f Makefile.osx && make -f Makefile.ios clean && make -f Makefile.ios ; else ./configure && make ; fi