2019-07-09 14:27:39 -04: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 09:15:00 -04:00
|
|
|
export DOCKER_NAME_TAG=ubuntu:20.04
|
2019-07-09 14:27:39 -04:00
|
|
|
export PACKAGES="cmake python3"
|
|
|
|
export DEP_OPTS="MULTIPROCESS=1"
|
|
|
|
export GOAL="install"
|
2021-03-18 11:11:12 -03:00
|
|
|
export BITCOIN_CONFIG="--enable-external-signer"
|
2019-07-09 14:27:39 -04:00
|
|
|
export TEST_RUNNER_ENV="BITCOIND=bitcoin-node"
|
2021-02-20 23:11:13 -03:00
|
|
|
export RUN_SECURITY_TESTS="true"
|