mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
675a8a8586
e1900008699bd45031b7faa9ef3d0a81d54091b0 ci-s390x: Add qemu and depends support in the ci script (Elichai Turkel) Pull request description: Related: #17599 This adds qemu support just like we have in arm and compile the depends. other than that I also fixed some missing includes to make the depends compile. ACKs for top commit: MarcoFalke: ACK e190000 (first commit only, didn't look at second commit) Tree-SHA512: 2b8a39772b86408569f52cdc33832dbce7e5e9cdd710524295f3d259628cdfc017e740f6f94941307d7f8e413236814a95ba851153c617eb5fb75b4bd9a7e52f
18 lines
688 B
Bash
18 lines
688 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019 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
|
|
# The host arch is unknown, so we run the tests through qemu.
|
|
# If the host is s390x and wants to run the tests natively, it can set QEMU_USER_CMD to the empty string.
|
|
export QEMU_USER_CMD="${QEMU_USER_CMD:"qemu-s390x"}"
|
|
export PACKAGES="python3-zmq bsdmainutils qemu-user"
|
|
export RUN_UNIT_TESTS=true
|
|
export RUN_FUNCTIONAL_TESTS=true
|
|
export GOAL="install"
|
|
export BITCOIN_CONFIG="--enable-reduce-exports --with-incompatible-bdb"
|