00_setup_env_native_nowallet.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 CONTAINER_NAME=ci_native_nowallet
10 export CI_IMAGE_NAME_TAG="mirror.gcr.io/ubuntu:24.04"
11 # Use minimum supported python3.10 (or best-effort 3.12) and clang-17, see doc/dependencies.md
12 export PACKAGES="python3-zmq python3-pip clang-17 llvm-17 libc++abi-17-dev libc++-17-dev"
13 export PIP_PACKAGES="--break-system-packages pycapnp"
14 export DEP_OPTS="NO_WALLET=1 CC=clang-17 CXX='clang++-17 -stdlib=libc++'"
15 export GOAL="install"
16 export BITCOIN_CONFIG="\
17 --preset=dev-mode \
18 -DREDUCE_EXPORTS=ON \
19 -DENABLE_WALLET=OFF \
20 -DWITH_EMBEDDED_ASMAP=OFF \
21 "
22