Add Travis CI configuration

This commit is contained in:
Daniel Jones 2016-04-23 19:54:09 +01:00
parent 1782d0e993
commit 93799f8eec

12
.travis.yml Normal file
View file

@ -0,0 +1,12 @@
dist: trusty
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -q
- sudo apt-get install g++-4.9 cmake libasound2-dev -y
- export CXX="g++-4.9" CC="gcc-4.9"
script:
- mkdir build
- cd build
- cmake ..
- make
- sudo make install