2014-05-17 03:26:19 -04:00
|
|
|
language: c
|
2014-05-20 10:05:07 -04:00
|
|
|
|
2014-05-17 03:26:19 -04:00
|
|
|
compiler:
|
|
|
|
- gcc
|
2014-05-20 10:05:07 -04:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- compiler: gcc
|
2014-05-21 11:47:26 -04:00
|
|
|
env: CONFIGURE_OPTION='--enable-debug --with-malloc=jemalloc' COVERALLS=yes VALGRIND=no
|
2014-05-21 04:29:36 -04:00
|
|
|
- compiler: gcc
|
2014-05-21 11:47:26 -04:00
|
|
|
env: CONFIGURE_OPTION='--enable-debug --with-malloc=jemalloc' COVERALLS=yes VALGRIND=yes LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/
|
2014-05-20 10:05:07 -04:00
|
|
|
|
2014-05-17 03:26:19 -04:00
|
|
|
install:
|
2014-05-17 04:06:05 -04:00
|
|
|
- sudo apt-get update -qq
|
2014-05-18 23:44:29 -04:00
|
|
|
- sudo apt-get install -qq automake pkg-config build-essential libtool automake autoconf m4 gnulib
|
|
|
|
- sudo apt-get install -qq check libpcre3 libpcre3-dev libjemalloc-dev libjemalloc1
|
2014-05-18 23:45:39 -04:00
|
|
|
- sudo apt-get install -qq graphviz-dev graphviz
|
2014-05-21 05:00:18 -04:00
|
|
|
- if [ "x$COVERALLS" == xyes ]; then sudo pip install cpp-coveralls; fi
|
2014-05-21 05:02:52 -04:00
|
|
|
- if [ "x$VALGRIND" == xyes ]; then sudo apt-get install valgrind; fi
|
2014-05-20 10:05:07 -04:00
|
|
|
|
2014-05-21 07:19:13 -04:00
|
|
|
before_script:
|
2014-05-21 07:22:24 -04:00
|
|
|
- sudo ldconfig
|
2014-05-17 03:26:19 -04:00
|
|
|
script:
|
2014-05-20 10:05:07 -04:00
|
|
|
- ./autogen.sh
|
|
|
|
- ./configure $CONFIGURE_OPTION
|
|
|
|
- make
|
2014-05-21 07:06:23 -04:00
|
|
|
- sudo make install
|
2014-05-21 05:00:18 -04:00
|
|
|
- if [ "x$VALGRIND" == xyes ]; then make check > /dev/null 2>&1; else make check; fi
|
|
|
|
- if [ "x$VALGRIND" == xyes ]; then valgrind ./tests/.libs/* -v --trace-children=yes --show-leak-kinds=full --leak-check=full; fi
|
2014-05-20 10:05:07 -04:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- if [ x$COVERALLS == xyes ]; then coveralls ; fi
|
|
|
|
|
2014-05-17 03:26:19 -04:00
|
|
|
cache:
|
|
|
|
apt: true
|