1#!/usr/bin/env bash
2#
3# Copyright (c) 2019-2020 The Bitcoin Core developers
4# Distributed under the MIT software license, see the accompanying
5# file COPYING or http://www.opensource.org/licenses/mit-license.php.
6
7export LC_ALL=C.UTF-8
8
9export DOCKER_NAME_TAG="ubuntu:20.04"
10export CONTAINER_NAME=ci_native_fuzz
11export PACKAGES="clang llvm python3 libevent-dev bsdmainutils libboost-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev"
12export NO_DEPENDS=1
13export RUN_UNIT_TESTS=false
14export RUN_FUNCTIONAL_TESTS=false
15export RUN_FUZZ_TESTS=true
16export GOAL="install"
17export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer,address,undefined,integer CC=clang CXX=clang++"
18export CCACHE_SIZE=200M
19