1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-20 04:09:59 +00:00

add -Wno-maybe-uninitialized to Travis autotools test

This commit is contained in:
Zeno Rogue 2019-09-13 20:08:26 +02:00
parent 44f42f7681
commit d3783a2ebe

View File

@ -138,7 +138,7 @@ script:
# Build hyperrogue. # Build hyperrogue.
if [[ "$TRAVIS_BUILD_SYSTEM" == "autotools" ]]; then if [[ "$TRAVIS_BUILD_SYSTEM" == "autotools" ]]; then
autoreconf -vi autoreconf -vi
./configure CXXFLAGS="-Wall -Werror" ./configure CXXFLAGS="-Wall -Werror -Wno-maybe-uninitialized"
make make
elif [[ "$TRAVIS_BUILD_SYSTEM" == "Makefile" ]]; then elif [[ "$TRAVIS_BUILD_SYSTEM" == "Makefile" ]]; then
make -f Makefile.simple CXX="${HYPERROGUE_CXX-g++}" make -f Makefile.simple CXX="${HYPERROGUE_CXX-g++}"