mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
e27d9a7ecb
9e111db088e4137865ae068d206c769994ea0a29 test: set a name for CI Docker containers (fanquake) Pull request description: Addresses one part of #16664, by making it easier to identify CI containers that are running locally. By default Docker will generate random names, like `peaceful_rubin`, with this change, we explicitly set names for all containers. ACKs for top commit: MarcoFalke: ACK 9e111db088e4137865ae068d206c769994ea0a29 Tree-SHA512: 0a29ada0d8cf6b0e9ae7a35f4f6df7a3dcc448523ceaed01371124360d6e3d1bf351172104a5fb629488eeaa57994ba04134dcb83c261eb1dfd2f0d73edf5f60
26 lines
1.0 KiB
Bash
26 lines
1.0 KiB
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.
|
|
if [ -z ${QEMU_USER_CMD+x} ]; then export QEMU_USER_CMD="${QEMU_USER_CMD:-"qemu-s390x"}"; fi
|
|
export PACKAGES="python3-zmq"
|
|
if [ -n "$QEMU_USER_CMD" ]; then
|
|
# Likely cross-compiling, so install the needed gcc and qemu-user
|
|
export DPKG_ADD_ARCH="s390x"
|
|
export PACKAGES="$PACKAGES g++-s390x-linux-gnu qemu-user libc6:s390x libstdc++6:s390x libfontconfig1:s390x libxcb1:s390x"
|
|
fi
|
|
# Use debian to avoid 404 apt errors
|
|
export CONTAINER_NAME=ci_s390x
|
|
export DOCKER_NAME_TAG="debian:focal"
|
|
export RUN_UNIT_TESTS=true
|
|
export RUN_FUNCTIONAL_TESTS=true
|
|
export GOAL="install"
|
|
export BITCOIN_CONFIG="--enable-reduce-exports --with-incompatible-bdb"
|