mirror of https://github.com/bitcoin/bitcoin.git
22 lines
771 B
Bash
Executable File
22 lines
771 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2020-present 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_centos
|
|
export CI_IMAGE_NAME_TAG="quay.io/centos/centos:stream10"
|
|
export CI_BASE_PACKAGES="gcc-c++ glibc-devel libstdc++-devel ccache make ninja-build git python3 python3-pip which patch xz procps-ng rsync coreutils bison e2fsprogs cmake dash"
|
|
export PIP_PACKAGES="pyzmq pycapnp"
|
|
export DEP_OPTS="DEBUG=1"
|
|
export GOAL="install"
|
|
export BITCOIN_CONFIG="\
|
|
-DWITH_ZMQ=ON \
|
|
-DBUILD_GUI=ON \
|
|
-DREDUCE_EXPORTS=ON \
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
|
"
|
|
export BITCOIN_CMD="bitcoin -m" # Used in functional tests
|