empserver/.travis.yml
Markus Armbruster 0043ab1889 Add Travis CI configuration
Travis CI is a hosted, continuous integration service.  Let's see how
it works out for us.
2013-05-08 06:55:21 +02:00

8 lines
163 B
YAML

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