Travis CI is a hosted, continuous integration service. Let's see how it works out for us.
8 lines
163 B
YAML
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
|