Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp A. Hartmann <pah@qo.cx>2014-08-12 17:44:45 +0400
committerPhilipp A. Hartmann <pah@qo.cx>2014-08-12 17:54:07 +0400
commitfa3996ea1ddb9bc524ac24d66d3ed3e63c179354 (patch)
treef712a520acdabd23670f5158ac693c9c94ea9645 /.travis.yml
parent4ed173fc891a1130952a0dfc5e529c716d672d5e (diff)
.travis.yml: install libc6-dbg:i386 to run valgrind on 32-bit
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 179accac..d3c02bc2 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;