Files
librubberband/.travis.yml

38 lines
754 B
YAML
Raw Normal View History

2018-05-14 21:28:08 +01:00
dist:
- trusty
language:
- cpp
sudo:
- false
os:
- linux
- osx
addons:
apt:
packages:
- libsndfile-dev
2018-05-14 21:33:31 +01:00
- libsamplerate-dev
2018-05-14 21:35:39 +01:00
- libfftw3-dev
2018-05-14 21:38:20 +01:00
- vamp-plugin-sdk
2018-05-14 21:41:25 +01:00
- ladspa-sdk
cache:
directories:
- $HOME/Library/Caches/Homebrew
- /usr/local/Homebrew
before_cache:
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew cleanup; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then find /usr/local/Homebrew \! -regex ".+\.git.+" -delete; fi
2018-05-14 21:28:08 +01:00
before_install:
- if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; brew install libsndfile ; fi
script:
2018-05-15 18:43:39 +01:00
- if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then make -f Makefile.osx && make -f Makefile.ios clean && make -f Makefile.ios ; else ./configure && make ; fi
2018-05-14 21:28:08 +01:00