Files
librubberband/.travis.yml
Chris Cannam 6a64703000 + fftw
2018-05-14 21:35:39 +01:00

27 lines
397 B
YAML

dist:
- trusty
language:
- cpp
sudo:
- false
os:
- linux
- osx
addons:
apt:
packages:
- libsndfile-dev
- libsamplerate-dev
- libfftw3-dev
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 ; else ./configure && make ; fi