diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-12-30 12:23:32 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-12-30 12:23:35 +0100 |
commit | 5d911336998ee0b15f28bd7c96e0e56e7b878979 (patch) | |
tree | 6a3a49defd60ea30ac2e8ffb0aacb3b32cbee91c | |
parent | f3d6a5ce772e28b997b6cd88c7e60faa52d158fb (diff) | |
parent | ec7b7d4a36e6e7dfa708f64666f96cd97f83f6dd (diff) |
Merge bitcoin/bitcoin#22815: ci: Enable the gui in the tsan build
ec7b7d4a36e6e7dfa708f64666f96cd97f83f6dd ci: Enable the gui in the TSan build (Hennadii Stepanov)
Pull request description:
This PR is a reincarnation of #19162.
ACKs for top commit:
MarcoFalke:
review ACK ec7b7d4a36e6e7dfa708f64666f96cd97f83f6dd
Tree-SHA512: b68a25edce546a538f0ec6e929940ad9c4ea94c9af1cabae5475bc04dd536615a9709444c2f2994b7aaa400d2375bf628b5edefb911ed2a2bedd30138d681c1d
-rwxr-xr-x | ci/test/00_setup_env_native_tsan.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_native_tsan.sh b/ci/test/00_setup_env_native_tsan.sh index 5d0880ff4a..03b749a35d 100755 --- a/ci/test/00_setup_env_native_tsan.sh +++ b/ci/test/00_setup_env_native_tsan.sh @@ -11,4 +11,4 @@ export DOCKER_NAME_TAG=ubuntu:22.04 export PACKAGES="clang llvm libc++abi-dev libc++-dev python3-zmq" export DEP_OPTS="CC=clang CXX='clang++ -stdlib=libc++'" export GOAL="install" -export BITCOIN_CONFIG="--enable-zmq --with-gui=no CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER' CXXFLAGS='-g' --with-sanitizers=thread CC=clang CXX='clang++ -stdlib=libc++'" +export BITCOIN_CONFIG="--enable-zmq CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER' CXXFLAGS='-g' --with-sanitizers=thread CC=clang CXX='clang++ -stdlib=libc++'" |