2019-08-15 16:51:31 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2021-12-30 19:36:57 +02:00
|
|
|
# Copyright (c) 2019-2021 The Bitcoin Core developers
|
2019-08-15 16:51:31 -04: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
|
|
|
|
|
|
|
|
export HOST=arm-linux-gnueabihf
|
2019-10-10 19:04:49 -04:00
|
|
|
export DPKG_ADD_ARCH="armhf"
|
2019-12-17 15:24:03 -05:00
|
|
|
export PACKAGES="python3-zmq g++-arm-linux-gnueabihf busybox libc6:armhf libstdc++6:armhf libfontconfig1:armhf libxcb1:armhf"
|
2020-02-05 08:43:10 +08:00
|
|
|
export CONTAINER_NAME=ci_arm_linux
|
2023-07-17 12:30:12 +02:00
|
|
|
export CI_IMAGE_NAME_TAG="docker.io/arm64v8/debian:bookworm"
|
2019-09-30 17:26:22 -04:00
|
|
|
export USE_BUSY_BOX=true
|
2019-10-02 17:10:57 -04:00
|
|
|
export RUN_UNIT_TESTS=true
|
2020-10-03 17:17:35 +02:00
|
|
|
export RUN_FUNCTIONAL_TESTS=false
|
2019-08-15 16:51:31 -04:00
|
|
|
export GOAL="install"
|
|
|
|
# -Wno-psabi is to disable ABI warnings: "note: parameter passing for argument of type ... changed in GCC 7.1"
|
|
|
|
# This could be removed once the ABI change warning does not show up by default
|
2021-09-01 16:16:20 +08:00
|
|
|
export BITCOIN_CONFIG="--enable-reduce-exports CXXFLAGS=-Wno-psabi"
|