2019-08-15 22:51:31 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-08-16 19:27:31 +02:00
|
|
|
# Copyright (c) 2019-2020 The Bitcoin Core developers
|
2019-08-15 22:51:31 +02: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-04-01 06:27:34 +02:00
|
|
|
export DOCKER_NAME_TAG="ubuntu:20.04"
|
2020-02-10 14:50:29 +01:00
|
|
|
export CONTAINER_NAME=ci_native_fuzz
|
2019-11-19 16:30:40 +01:00
|
|
|
export PACKAGES="clang llvm python3 libevent-dev bsdmainutils libboost-filesystem-dev libboost-test-dev libboost-thread-dev"
|
2022-04-07 18:03:41 +02:00
|
|
|
export DEP_OPTS="NO_UPNP=1 DEBUG=1"
|
|
|
|
export CPPFLAGS="-DDEBUG_LOCKORDER -DENABLE_DASH_DEBUG -DARENA_DEBUG"
|
2023-06-30 11:09:16 +02:00
|
|
|
export CXXFLAGS="-Werror -Wno-unused-command-line-argument -Wno-unused-value -Wno-deprecated-builtins"
|
2022-04-07 18:03:41 +02:00
|
|
|
export PYZMQ=true
|
2019-08-15 22:51:31 +02:00
|
|
|
export RUN_UNIT_TESTS=false
|
2022-03-25 09:24:16 +01:00
|
|
|
export RUN_INTEGRATION_TESTS=false
|
2019-08-15 22:51:31 +02:00
|
|
|
export RUN_FUZZ_TESTS=true
|
|
|
|
export GOAL="install"
|
2023-07-09 18:03:44 +02:00
|
|
|
export BITCOIN_CONFIG="--enable-zmq --disable-ccache --enable-fuzz --with-sanitizers=fuzzer,address,undefined --enable-c++17 --enable-suppress-external-warnings CC=clang-15 CXX=clang++-15"
|