bitcoin/ci/test/00_setup_env_native_centos.sh

16 lines
706 B
Bash
Raw Normal View History

#!/usr/bin/env bash
#
2024-12-12 09:24:03 +01:00
# 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
2025-01-13 23:37:31 +01:00
export CONTAINER_NAME=ci_native_centos
export CI_IMAGE_NAME_TAG="quay.io/centos/centos:stream9"
2024-12-12 09:24:03 +01:00
export STREAM_GCC_V="12"
2025-01-13 23:37:31 +01:00
export CI_BASE_PACKAGES="gcc-toolset-${STREAM_GCC_V}-gcc-c++ glibc-devel gcc-toolset-${STREAM_GCC_V}-libstdc++-devel ccache make git python3 python3-pip which patch xz procps-ng dash rsync coreutils bison e2fsprogs cmake"
export PIP_PACKAGES="pyzmq"
export GOAL="install"
2024-07-24 11:54:41 +01:00
export BITCOIN_CONFIG="-DWITH_ZMQ=ON -DBUILD_GUI=ON -DREDUCE_EXPORTS=ON"