2019-07-09 20:27:39 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 The Bitcoin Core developers
|
|
|
|
# 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
|
|
|
|
|
|
|
|
export CONTAINER_NAME=ci_native_multiprocess
|
2020-06-13 15:15:00 +02:00
|
|
|
export DOCKER_NAME_TAG=ubuntu:20.04
|
2021-04-13 06:40:15 +02:00
|
|
|
export PACKAGES="cmake python3 python3-pip llvm clang"
|
2021-04-30 08:49:55 +02:00
|
|
|
export DEP_OPTS="DEBUG=1 MULTIPROCESS=1"
|
2019-07-09 20:27:39 +02:00
|
|
|
export GOAL="install"
|
2021-05-01 08:53:49 +02:00
|
|
|
export BITCOIN_CONFIG="--enable-external-signer --enable-debug CC=clang CXX=clang++" # Use clang to avoid OOM
|
2019-07-09 20:27:39 +02:00
|
|
|
export TEST_RUNNER_ENV="BITCOIND=bitcoin-node"
|
2021-02-21 03:11:13 +01:00
|
|
|
export RUN_SECURITY_TESTS="true"
|
2021-04-13 06:40:15 +02:00
|
|
|
export PIP_PACKAGES="lief"
|