File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22#
3- # Copyright (c) 2020-2022 The Bitcoin Core developers
3+ # Copyright (c) 2020-present The Bitcoin Core developers
44# Distributed under the MIT software license, see the accompanying
55# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
@@ -9,9 +9,9 @@ export LC_ALL=C.UTF-8
99export HOST=i686-pc-linux-gnu
1010export CONTAINER_NAME=ci_i686_centos
1111export CI_IMAGE_NAME_TAG=" quay.io/centos/amd64:stream9"
12- export CI_BASE_PACKAGES=" gcc-c++ glibc-devel.x86_64 libstdc++-devel.x86_64 glibc-devel.i686 libstdc++-devel.i686 ccache make git python3 python3-pip which patch lbzip2 xz procps-ng dash rsync coreutils bison e2fsprogs cmake"
12+ export STREAM_GCC_V=" 12"
13+ export CI_BASE_PACKAGES=" gcc-toolset-${STREAM_GCC_V} -gcc-c++ glibc-devel.x86_64 gcc-toolset-${STREAM_GCC_V} -libstdc++-devel.x86_64 glibc-devel.i686 gcc-toolset-${STREAM_GCC_V} -libstdc++-devel.i686 ccache make git python3 python3-pip which patch lbzip2 xz procps-ng dash rsync coreutils bison e2fsprogs cmake"
1314export PIP_PACKAGES=" pyzmq"
1415export GOAL=" install"
15- export NO_WERROR=1 # Suppress error: #warning _FORTIFY_SOURCE > 2 is treated like 2 on this platform [-Werror=cpp]
1616export BITCOIN_CONFIG=" -DWITH_ZMQ=ON -DBUILD_GUI=ON -DREDUCE_EXPORTS=ON"
1717export CONFIG_SHELL=" /bin/dash"
Original file line number Diff line number Diff line change 9393if [ -z " $NO_DEPENDS " ]; then
9494 if [[ $CI_IMAGE_NAME_TAG == * centos* ]]; then
9595 SHELL_OPTS=" CONFIG_SHELL=/bin/dash"
96+ # shellcheck disable=SC1090
97+ source " /opt/rh/gcc-toolset-${STREAM_GCC_V} /enable"
9698 else
9799 SHELL_OPTS=" CONFIG_SHELL="
98100 fi
You can’t perform that action at this time.
0 commit comments