11 lines
185 B
YAML
11 lines
185 B
YAML
# Travis CI configuration
|
|
language: c
|
|
# Test with both gcc and clang:
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
os:
|
|
- linux
|
|
- osx
|
|
# How to build:
|
|
script: ./bootstrap && ./configure && make check
|