mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-04 10:46:19 +00:00
2a746500fa769f83405349bcffa3f0971b92a2de ci: migrate some jobs to Debian Trixie, use GCC 14 (fanquake) fb0e6edfe88145fea6d96feb24ab45d3f43438ed guix: Apply SSA generation patch to maintain determinism (Mara van der Laan) 34909799fe60055a34f524f7d89bd1a0c02567c1 guix: use GCC 14.3.0 over 13.3.0 (fanquake) 47be9122a7f5e37bcd955fe82c2bebcec73703e9 guix: disable gprofng in GCC (fanquake) ea29329eb706fe4ed57226df59c5d6fe43aa3167 guix: build GCC with --enable-host-bind-now (fanquake) 6f54e267d01d548e5e7aa05e48a5dc859675e6a9 guix: disable libquadmath in GCC (fanquake) 7735901ed266b08912829c701c78893933c48524 guix: 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: ACK 2a746500fa769f83405349bcffa3f0971b92a2de. I have reviewed the code and it looks OK. The new GCC patch looks reasonable. theuni: utACK 2a746500fa769f83405349bcffa3f0971b92a2de sedited: ACK 2a746500fa769f83405349bcffa3f0971b92a2de Tree-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 \
|
|
"
|