From fa3996ea1ddb9bc524ac24d66d3ed3e63c179354 Mon Sep 17 00:00:00 2001 From: "Philipp A. Hartmann" Date: Tue, 12 Aug 2014 15:44:45 +0200 Subject: [PATCH] .travis.yml: install libc6-dbg:i386 to run valgrind on 32-bit --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 179acca..d3c02bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ env: before_install: - sudo add-apt-repository -y ppa:codegear/release - sudo apt-get update -qq - - sudo apt-get install -qq premake4 valgrind g++-multilib + - sudo apt-get install -qq premake4 valgrind g++-multilib libc6-dbg:i386 install: true @@ -29,7 +29,7 @@ script: - make -C build/gmake -f example.make config=${CONF}${BITS} - pushd bin - ./unittest_${CONF}_x${BITS}_gmake - - if [ "$BITS" = 64 ]; then valgrind --leak-check=full --error-exitcode=1 ./unittest_${CONF}_x${BITS}_gmake; fi + - valgrind --leak-check=full --error-exitcode=1 ./unittest_${CONF}_x${BITS}_gmake - if [ "$CONF" = "release" ]; then ./perftest_${CONF}_x${BITS}_gmake; fi - popd - ./build/travis-doxygen.sh;