2020-01-08 23:36:46 +01:00
#!/usr/bin/env bash
#
2024-12-12 09:24:03 +01:00
# Copyright (c) 2020-present The Bitcoin Core developers
2020-01-08 23:36:46 +01: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
2025-01-13 23:37:31 +01:00
export CONTAINER_NAME = ci_native_centos
2025-01-02 14:21:07 +01:00
export CI_IMAGE_NAME_TAG = "quay.io/centos/centos:stream10"
export CI_BASE_PACKAGES = "gcc-c++ glibc-devel libstdc++-devel ccache make git python3 python3-pip which patch xz procps-ng ksh rsync coreutils bison e2fsprogs cmake"
2022-10-03 12:57:50 +02:00
export PIP_PACKAGES = "pyzmq"
2024-12-18 09:50:13 +01:00
export DEP_OPTS = "DEBUG=1" # Temporarily enable a DEBUG=1 build to check for GCC-bug-117966 regressions. This can be removed once the minimum GCC version is bumped to 12 in the previous releases task, see https://github.com/bitcoin/bitcoin/issues/31436#issuecomment-2530717875
2020-01-08 23:36:46 +01:00
export GOAL = "install"
2024-12-18 09:50:13 +01:00
export BITCOIN_CONFIG = "-DWITH_ZMQ=ON -DBUILD_GUI=ON -DREDUCE_EXPORTS=ON -DCMAKE_BUILD_TYPE=Debug"