r3/.travis.yml

19 lines
428 B
YAML
Raw Normal View History

2014-05-17 03:26:19 -04:00
language: c
compiler:
- clang
- gcc
2014-05-17 03:28:35 -04:00
# for debian
2014-05-17 03:26:19 -04:00
install:
2014-05-17 03:36:35 -04:00
- sudo apt-get install check libpcre3 libpcre3-dev libjemalloc-dev libjemalloc1 build-essential libtool automake autoconf m4 gnulib
2014-05-17 03:26:19 -04:00
before_script:
2014-05-17 03:40:48 -04:00
- aclocal
- autoconf
- automake --add-missing --foreign
2014-05-17 03:38:16 -04:00
- autoreconf -i -I/usr/share/gnulib/m4 && ./configure && make
# - ./autogen.sh
# - ./configure && make
2014-05-17 03:26:19 -04:00
script:
- make check
cache:
apt: true