protobuf-c/.travis.yml
Ilya Lipnitskiy baa3ab296d .travis.yml: add a travis build entry to run tests under valgrind
Makefile.am: add valgrind to the AM_TESTS_ENVIRONMENT
configure.ac: enable valgrind testing option for ./configure
m4/valgrind-tests.m4: enable tracing children for libtool wrapper
script compatibility, but ignore standard binaries in /usr or /bin
2014-01-14 00:20:05 -08:00

14 lines
359 B
YAML

language: cpp
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get -q install protobuf-compiler libprotobuf-dev libprotoc-dev
script:
- ./autogen.sh
- ./configure && make distcheck && make clean
- ./configure --enable-valgrind-tests && make distcheck
DISTCHECK_CONFIGURE_FLAGS="--enable-valgrind-tests" && make clean