Travis: Disable some gcc warnings to avoid exceeding Travis limit

See: https://github.com/xianyi/OpenBLAS/pull/1255#issuecomment-318628666
This commit is contained in:
Jakub Jirutka 2017-07-28 14:32:17 +02:00
parent e0bd5b5c0e
commit 08c7d1ddf8
1 changed files with 2 additions and 0 deletions

View File

@ -77,7 +77,9 @@ jobs:
before_script: *common-before
script:
- set -e
# XXX: Disable some warnings for now to avoid exceeding Travis limit for log size.
- alpine make QUIET_MAKE=1 $COMMON_FLAGS $BTYPE
CFLAGS="-Wno-misleading-indentation -Wno-sign-conversion -Wno-incompatible-pointer-types"
- alpine make -C test $COMMON_FLAGS $BTYPE
- alpine make -C ctest $COMMON_FLAGS $BTYPE
- alpine make -C utest $COMMON_FLAGS $BTYPE