Files
librubberband/.travis.yml

27 lines
397 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:28:08 +01:00
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