mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-27 01:36:10 +00:00
22 lines
435 B
YAML
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
|