First cut travis/appveyor files

This commit is contained in:
Chris Cannam
2018-05-14 21:28:08 +01:00
parent 486ab5de62
commit d7108dba95
2 changed files with 42 additions and 0 deletions

18
.appveyor.yml Normal file
View File

@@ -0,0 +1,18 @@
configuration:
- Release
platform:
- Win32
- x64
install:
- cinst wget
- c:\ProgramData\chocolatey\bin\wget.exe http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28-w32-setup.exe
- c:\ProgramData\chocolatey\bin\wget.exe http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28-w64-setup.exe
- ps: .\libsndfile-1.0.28-w32-setup.exe /silent /sp- /norestart
- ps: .\libsndfile-1.0.28-w64-setup.exe /silent /sp- /norestart
build_script:
- msbuild rubberband.sln

24
.travis.yml Normal file
View File

@@ -0,0 +1,24 @@
dist:
- trusty
language:
- cpp
sudo:
- false
os:
- linux
- osx
addons:
apt:
packages:
- libsndfile-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