mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-09 02:59:31 +08:00
2a746500faci: migrate some jobs to Debian Trixie, use GCC 14 (fanquake)fb0e6edfe8guix: Apply SSA generation patch to maintain determinism (Mara van der Laan)34909799feguix: use GCC 14.3.0 over 13.3.0 (fanquake)47be9122a7guix: disable gprofng in GCC (fanquake)ea29329eb7guix: build GCC with --enable-host-bind-now (fanquake)6f54e267d0guix: disable libquadmath in GCC (fanquake)7735901ed2guix: disable building libgomp in GCC (fanquake) Pull request description: Switching to using GCC 14.x for release builds has come up multiple times recently. It will eventually be needed for #25573, and could also be useful for #30210. ACKs for top commit: hebasto: ACK2a746500fa. I have reviewed the code and it looks OK. The new GCC patch looks reasonable. theuni: utACK2a746500fasedited: ACK2a746500faTree-SHA512: 56912bed19386f06d52fb94e0ef6d96f5415ab2de8b5e94890806d7cc0b937a3c4b11cc161aa2e06ca2fd3c392ef7501c91688e0897e1c1c51aafa963f3e50d9
22 lines
732 B
Bash
Executable File
22 lines
732 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019-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 HOST=s390x-linux-gnu
|
|
export PACKAGES="python3-zmq"
|
|
export CONTAINER_NAME=ci_s390x
|
|
export CI_IMAGE_NAME_TAG="mirror.gcr.io/debian:trixie"
|
|
export CI_IMAGE_PLATFORM="linux/s390x"
|
|
# bind tests excluded for now, see https://github.com/bitcoin/bitcoin/issues/17765#issuecomment-602068547
|
|
export TEST_RUNNER_EXTRA="--exclude rpc_bind --exclude feature_bind_extra"
|
|
export RUN_FUNCTIONAL_TESTS=true
|
|
export GOAL="install"
|
|
export BITCOIN_CONFIG="\
|
|
--preset=dev-mode \
|
|
-DREDUCE_EXPORTS=ON \
|
|
"
|