2019-08-15 22:51:31 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-08-16 19:27:31 +02:00
|
|
|
# Copyright (c) 2019-2020 The Bitcoin Core developers
|
2019-08-15 22:51:31 +02: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-11-04 14:23:04 +01:00
|
|
|
# The host arch is unknown, so we run the tests through qemu.
|
|
|
|
# If the host is arm and wants to run the tests natively, it can set QEMU_USER_CMD to the empty string.
|
2020-01-22 21:09:07 +01:00
|
|
|
if [ -z ${QEMU_USER_CMD+x} ]; then export QEMU_USER_CMD="${QEMU_USER_CMD:-"qemu-arm -L /usr/arm-linux-gnueabihf/"}"; fi
|
2019-11-04 14:23:04 +01:00
|
|
|
export DPKG_ADD_ARCH="armhf"
|
2020-01-22 21:09:07 +01:00
|
|
|
export PACKAGES="python3-zmq g++-arm-linux-gnueabihf busybox libc6:armhf libstdc++6:armhf libfontconfig1:armhf libxcb1:armhf"
|
|
|
|
if [ -n "$QEMU_USER_CMD" ]; then
|
|
|
|
# Likely cross-compiling, so install the needed gcc and qemu-user
|
|
|
|
export PACKAGES="$PACKAGES qemu-user"
|
|
|
|
fi
|
2020-02-10 14:50:29 +01:00
|
|
|
export CONTAINER_NAME=ci_arm_linux
|
2020-01-22 21:09:07 +01:00
|
|
|
# Use debian to avoid 404 apt errors when cross compiling
|
2022-04-07 18:03:41 +02:00
|
|
|
export CHECK_DOC=1
|
2019-09-30 23:26:22 +02:00
|
|
|
export USE_BUSY_BOX=true
|
2022-04-07 18:03:41 +02:00
|
|
|
export RUN_UNIT_TESTS=false
|
2024-01-19 22:48:01 +01:00
|
|
|
export RUN_FUNCTIONAL_TESTS=false
|
2019-08-15 22:51:31 +02: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
|
2020-08-05 13:21:24 +02:00
|
|
|
export BITCOIN_CONFIG="--enable-reduce-exports --enable-suppress-external-warnings --enable-werror CXXFLAGS=-Wno-psabi --with-boost-process"
|