Add Travis CI configuration

Travis CI is a hosted, continuous integration service.  Let's see how
it works out for us.
This commit is contained in:
Markus Armbruster 2013-01-12 17:45:52 +01:00
parent ba67bd1f9e
commit 0043ab1889

8
.travis.yml Normal file
View file

@ -0,0 +1,8 @@
# Travis CI configuration
language: c
# Test with both gcc and clang:
compiler:
- gcc
- clang
# How to build:
script: ./bootstrap && ./configure && make check