aboutsummaryrefslogtreecommitdiff
path: root/ci/test/00_setup_env_native_tsan.sh
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2022-12-29 15:39:43 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2022-12-29 16:30:13 +0100
commitfaa00ca78e27a40cbafe701348e6b3674e3ddeed (patch)
tree645cf1a8e8c1f58574bd2881d16aec27f0cfe405 /ci/test/00_setup_env_native_tsan.sh
parent3b6e0f0345a5e7b437881f651d9b4e0881f7fd5e (diff)
ci: Use clang-15 in tsan task
Diffstat (limited to 'ci/test/00_setup_env_native_tsan.sh')
-rwxr-xr-xci/test/00_setup_env_native_tsan.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/test/00_setup_env_native_tsan.sh b/ci/test/00_setup_env_native_tsan.sh
index 66d18b974c..776a1d8f97 100755
--- a/ci/test/00_setup_env_native_tsan.sh
+++ b/ci/test/00_setup_env_native_tsan.sh
@@ -7,8 +7,8 @@
export LC_ALL=C.UTF-8
export CONTAINER_NAME=ci_native_tsan
-export DOCKER_NAME_TAG=ubuntu:22.04
-export PACKAGES="clang-13 llvm-13 libc++abi-13-dev libc++-13-dev python3-zmq"
-export DEP_OPTS="CC=clang-13 CXX='clang++-13 -stdlib=libc++'"
+export DOCKER_NAME_TAG=debian:bookworm # For clang-15
+export PACKAGES="clang-15 llvm-15 libc++abi-15-dev libc++-15-dev python3-zmq"
+export DEP_OPTS="CC=clang-15 CXX='clang++-15 -stdlib=libc++' NO_QR=1" # qr disabled due to libqrencode 3.4.4 compile failure, https://github.com/bitcoin/bitcoin/pull/26768#issuecomment-1367403430
export GOAL="install"
-export BITCOIN_CONFIG="--enable-zmq CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER -DDEBUG_LOCKCONTENTION' CXXFLAGS='-g' --with-sanitizers=thread CC=clang-13 CXX='clang++-13 -stdlib=libc++'"
+export BITCOIN_CONFIG="--enable-zmq CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER -DDEBUG_LOCKCONTENTION' CXXFLAGS='-g' --with-sanitizers=thread"