2019-11-25 14:12:51 +02:00
#!/usr/bin/env bash
#
2023-08-27 14:58:48 +02:00
# Copyright (c) 2019-present The Bitcoin Core developers
2019-11-25 14:12:51 +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
2019-11-28 13:26:48 +02:00
export HOST = s390x-linux-gnu
2019-12-17 15:24:03 -05:00
export PACKAGES = "python3-zmq"
2020-02-05 08:43:10 +08:00
export CONTAINER_NAME = ci_s390x
2023-07-17 12:30:12 +02:00
export CI_IMAGE_NAME_TAG = "docker.io/s390x/debian:bookworm"
2022-02-04 14:10:08 +01:00
export TEST_RUNNER_EXTRA = "--exclude feature_init,rpc_bind,feature_bind_extra" # Excluded for now, see https://github.com/bitcoin/bitcoin/issues/17765#issuecomment-602068547
2019-11-25 15:08:37 -05:00
export RUN_FUNCTIONAL_TESTS = true
2019-11-25 14:12:51 +02:00
export GOAL = "install"
2023-06-30 11:14:58 +01:00
export BITCOIN_CONFIG = "--enable-reduce-exports"