2020-02-17 10:34:51 -03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2022-12-24 20:49:50 -03:00
|
|
|
# Copyright (c) 2019-2022 The Bitcoin Core developers
|
2020-02-17 10:34:51 -03: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
|
|
|
|
|
2023-04-10 16:00:51 -04:00
|
|
|
export CI_IMAGE_NAME_TAG="debian:bookworm"
|
2020-02-17 10:34:51 -03:00
|
|
|
export CONTAINER_NAME=ci_native_fuzz_valgrind
|
2023-06-28 06:10:51 -04:00
|
|
|
export PACKAGES="clang llvm libclang-rt-dev libevent-dev libboost-dev libsqlite3-dev valgrind"
|
2020-02-17 10:34:51 -03:00
|
|
|
export NO_DEPENDS=1
|
|
|
|
export RUN_UNIT_TESTS=false
|
|
|
|
export RUN_FUNCTIONAL_TESTS=false
|
|
|
|
export RUN_FUZZ_TESTS=true
|
2020-02-16 08:28:37 -03:00
|
|
|
export FUZZ_TESTS_CONFIG="--valgrind"
|
2020-02-17 10:34:51 -03:00
|
|
|
export GOAL="install"
|
2023-04-10 16:00:51 -04:00
|
|
|
# Temporarily pin dwarf 4, until using Valgrind 3.20 or later
|
2022-07-20 04:11:15 -04:00
|
|
|
export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer CC=clang CXX=clang++ CFLAGS='-gdwarf-4' CXXFLAGS='-gdwarf-4'"
|
2020-07-14 12:00:49 -04:00
|
|
|
export CCACHE_SIZE=200M
|