miller/.travis.yml
2015-11-17 22:33:25 -05:00

22 lines
435 B
YAML

language: c
# Use newer travis container-based infrastructure
sudo: false
# Install flex dependency
addons:
apt:
packages:
- flex
- autoconf
- libtool
# Build using gcc and clang since it is supported
compiler:
- clang
- gcc
# Probably a better way to do this TODO
before_script: autoreconf -fiv
script: ./configure && make && make check && make distcheck && make CC=$CC -C c -f Makefile.no-autoconfig