2019-08-15 16:51:31 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2020-04-16 13:14:08 -04:00
|
|
|
# Copyright (c) 2019-2020 The Bitcoin Core developers
|
2019-08-15 16:51:31 -04:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
|
2020-02-04 21:43:10 -03:00
|
|
|
export CONTAINER_NAME=ci_native_tsan
|
2020-05-30 07:50:06 -04:00
|
|
|
export DOCKER_NAME_TAG=ubuntu:20.04
|
2020-05-31 18:37:47 -04:00
|
|
|
export PACKAGES="clang llvm libc++abi-dev libc++-dev python3-zmq"
|
2020-05-30 07:50:06 -04:00
|
|
|
export DEP_OPTS="CC=clang CXX='clang++ -stdlib=libc++'"
|
2020-06-29 10:00:27 -04:00
|
|
|
export TEST_RUNNER_EXTRA="--exclude feature_block --timeout-factor=4" # Increase timeout because sanitizers slow down. Low memory on Travis machines, exclude feature_block.
|
2019-08-15 16:51:31 -04:00
|
|
|
export GOAL="install"
|
2020-06-05 08:18:45 -04:00
|
|
|
export BITCOIN_CONFIG="--enable-zmq --with-gui=no CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER' CXXFLAGS='-g' --with-sanitizers=thread CC=clang CXX='clang++ -stdlib=libc++'"
|