summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJan-Erik Rediger <janerik@fnordig.de>2015-07-27 23:43:17 +0200
committerJan-Erik Rediger <janerik@fnordig.de>2015-07-28 00:21:24 +0200
commita9a0af1d354e3b1e16fd0febd69cc152a62c7a7e (patch)
tree9bdac42b25c02d53787eabdcc057b8316badd947 /.travis.yml
parent36a9802c54a8a18c6130f220a32ee21952fee387 (diff)
Use container-based Travis by installing packages through the addon
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml16
1 files changed, 12 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 1df63b0..1e1ce30 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,24 @@
language: c
+sudo: false
compiler:
- gcc
- clang
+addons:
+ apt:
+ packages:
+ - libc6-dbg
+ - libc6-dev
+ - libc6:i386
+ - libc6-dev-i386
+ - libc6-dbg:i386
+ - gcc-multilib
+ - valgrind
+
env:
- CFLAGS="-Werror"
- PRE="valgrind --track-origins=yes --leak-check=full"
- TARGET="32bit" TARGET_VARS="32bit-vars" CFLAGS="-Werror"
- TARGET="32bit" TARGET_VARS="32bit-vars" PRE="valgrind --track-origins=yes --leak-check=full"
-install:
- - sudo apt-get update -qq
- - sudo apt-get install libc6-dbg libc6-dev libc6-i686:i386 libc6-dev-i386 libc6-dbg:i386 valgrind -y
-
script: make $TARGET CFLAGS="$CFLAGS" && make check PRE="$PRE" && make $TARGET_VARS hiredis-example