2019-11-15 11:38:27 -05:00
#!/usr/bin/env bash
#
2023-08-23 22:48:44 +02:00
# Copyright (c) 2019-present The Bitcoin Core developers
2019-11-15 11:38:27 -05: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
2024-04-10 17:34:42 +02:00
export CI_IMAGE_NAME_TAG = "docker.io/ubuntu:24.04"
2020-02-05 08:43:10 +08:00
export CONTAINER_NAME = ci_native_valgrind
2024-04-10 17:34:42 +02:00
export PACKAGES = "valgrind clang-16 llvm-16 libclang-rt-16-dev python3-zmq libevent-dev libboost-dev libdb5.3++-dev libminiupnpc-dev libnatpmp-dev libzmq3-dev libsqlite3-dev"
2019-11-15 11:38:27 -05:00
export USE_VALGRIND = 1
export NO_DEPENDS = 1
2024-05-07 08:53:22 +02:00
export TEST_RUNNER_EXTRA = "--exclude feature_init,rpc_bind,feature_bind_extra" # feature_init excluded for now, see https://github.com/bitcoin/bitcoin/issues/30011 ; bind tests excluded for now, see https://github.com/bitcoin/bitcoin/issues/17765#issuecomment-602068547
2019-11-15 11:38:27 -05:00
export GOAL = "install"
2024-04-10 17:34:42 +02:00
export BITCOIN_CONFIG = "--enable-zmq --with-incompatible-bdb --with-gui=no CC=clang-16 CXX=clang++-16" # TODO enable GUI