Merge pull request #69 from ideoforms/master

Add Travis CI configuration
This commit is contained in:
Andrew Kelley 2016-04-23 12:04:35 -07:00
commit 2e064bfca8

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