Stop using -Werror

So that there aren't any failures because of warnings in other modules.
This commit is contained in:
Daniel James
2018-04-15 22:13:03 +01:00
parent 3e8dbcbcc5
commit a6da082784

View File

@ -12,11 +12,11 @@ matrix:
include: include:
- compiler: gcc - compiler: gcc
env: | env: |
USER_CONFIG="using gcc : : g++-4.8 -Werror ;" USER_CONFIG="using gcc : : g++-4.8 ;"
CXXSTD=03,11 CXXSTD=03,11
- compiler: g++-7 - compiler: g++-7
env: | env: |
USER_CONFIG="using gcc : : g++-7 -Werror ;" USER_CONFIG="using gcc : : g++-7 ;"
CXXSTD=11,14,17 CXXSTD=11,14,17
addons: addons:
apt: apt:
@ -26,11 +26,11 @@ matrix:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
- compiler: clang - compiler: clang
env: | env: |
USER_CONFIG="using clang : : clang++ -Werror ;" USER_CONFIG="using clang : : clang++ ;"
CXXSTD=03,11 CXXSTD=03,11
- compiler: clang - compiler: clang
env: | env: |
USER_CONFIG="using clang : : clang++ -Werror -D_HAS_AUTO_PTR_ETC=0 ;" USER_CONFIG="using clang : : clang++ -D_HAS_AUTO_PTR_ETC=0 ;"
CXXSTD=11 CXXSTD=11
before_script: before_script: