17 lines
251 B
YAML
17 lines
251 B
YAML
## Travis CI configuration
|
|
language: c
|
|
branches:
|
|
only:
|
|
- changeling
|
|
- fever
|
|
- master
|
|
- travis
|
|
# Test with both gcc and clang:
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
os:
|
|
- linux
|
|
- osx
|
|
# How to build:
|
|
script: ./bootstrap && ./configure && make check
|