d3fb491b85
Adds travis testing for 32bit builds as well as compile warnings on 64 bit and 32 bit builds.
16 lines
419 B
YAML
16 lines
419 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
env:
|
|
- CFLAGS="-Werror"
|
|
- PRE="valgrind --track-origins=yes --leak-check=full"
|
|
- TARGET="32bit" CFLAGS="-Werror"
|
|
- TARGET="32bit" PRE="valgrind --track-origins=yes --leak-check=full"
|
|
|
|
install:
|
|
- 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"
|