From 7ba4e5a5da4a6cf7ab3189c0f06a34057915a48d Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Thu, 26 Nov 2020 19:01:19 +0200 Subject: ci: Build with --enable-werror by default, and document exceptions --- ci/test/00_setup_env_mac_host.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci/test/00_setup_env_mac_host.sh') diff --git a/ci/test/00_setup_env_mac_host.sh b/ci/test/00_setup_env_mac_host.sh index 7c25a34cf..14f1ea3ec 100644 --- a/ci/test/00_setup_env_mac_host.sh +++ b/ci/test/00_setup_env_mac_host.sh @@ -9,7 +9,7 @@ export LC_ALL=C.UTF-8 export HOST=x86_64-apple-darwin16 export PIP_PACKAGES="zmq" export GOAL="install" -export BITCOIN_CONFIG="--with-gui --enable-reduce-exports --enable-werror --with-boost-process" +export BITCOIN_CONFIG="--with-gui --enable-reduce-exports --with-boost-process" export CI_OS_NAME="macos" export NO_DEPENDS=1 export OSX_SDK="" -- cgit v1.2.3 From 2f557fe52d293ec922f136e4850ceed1ee4d09c7 Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Sat, 10 Jul 2021 18:25:27 +0100 Subject: Disable warnings on Mac --- ci/test/00_setup_env_mac_host.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ci/test/00_setup_env_mac_host.sh') diff --git a/ci/test/00_setup_env_mac_host.sh b/ci/test/00_setup_env_mac_host.sh index 14f1ea3ec..a710d983e 100644 --- a/ci/test/00_setup_env_mac_host.sh +++ b/ci/test/00_setup_env_mac_host.sh @@ -16,3 +16,6 @@ export OSX_SDK="" export CCACHE_SIZE=300M export RUN_SECURITY_TESTS="true" + +# Compiler for Mac native warns on C99 in dependencies. +export NO_WERROR=1 -- cgit v1.2.3