00_setup_env_s390x.sh raw
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:26.04"
13 export CI_IMAGE_PLATFORM="linux/s390x"
14 # bind tests excluded for now, see https://github.com/bitcoin/bitcoin/issues/17765#issuecomment-602068547
15 export TEST_RUNNER_EXTRA="--exclude rpc_bind --exclude feature_bind_extra"
16 export RUN_FUNCTIONAL_TESTS=true
17 export GOAL="install"
18 export BITCOIN_CONFIG="\
19 --preset=dev-mode \
20 -DREDUCE_EXPORTS=ON \
21 "
22