/ ci / test / 00_setup_env_s390x.sh
00_setup_env_s390x.sh
 1  #!/usr/bin/env bash
 2  #
 3  # Copyright (c) 2019-present The Bitcoin Core developers
 4  # Distributed under the MIT software license, see the accompanying
 5  # file COPYING or http://www.opensource.org/licenses/mit-license.php.
 6  
 7  export LC_ALL=C.UTF-8
 8  
 9  export HOST=s390x-linux-gnu
10  export PACKAGES="python3-zmq"
11  export CONTAINER_NAME=ci_s390x
12  export CI_IMAGE_NAME_TAG="mirror.gcr.io/ubuntu:24.04"
13  export CI_IMAGE_PLATFORM="linux/s390x"
14  export TEST_RUNNER_EXTRA="--exclude rpc_bind,feature_bind_extra"  # Excluded for now, see https://github.com/bitcoin/bitcoin/issues/17765#issuecomment-602068547
15  export RUN_FUNCTIONAL_TESTS=true
16  export GOAL="install"
17  export BITCOIN_CONFIG="\
18    --preset=dev-mode \
19    -DREDUCE_EXPORTS=ON \
20  "