mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-10 09:06:15 +01:00
fa99e4521b
ci: Allow CCACHE_DIR bind mount (MarcoFalke)fa252da0b9
ci: Remove hardcoded CCACHE_DIR in cirrus (MarcoFalke)fa146904e1
ci: Bump default CCACHE_MAXSIZE to 500M (MarcoFalke)aaaa7cf8ba
cirrus: Drop CCACHE_NOHASHDIR (MarcoFalke)fa7ca182a9
ci: Print inner env (MarcoFalke) Pull request description: The outer env is printed when the `/tmp/env-$USER-$CONTAINER_NAME` is created. There is also a separate env printed when building the container image (usually with default values). To confirm that the inner container env is correctly derived from the outer env, and not from the default build env, print it a third time. ACKs for top commit: l0rinc: utACKfa99e4521b
willcl-ark: ACKfa99e4521b
Tree-SHA512: 59fd3262d551e09224866e31c14ca865461e81abbe00b83391fe3a9c7ada30fd2fd0272e4aa812df2712433ac7594d1a55cf674248b341359cec09c8d3f0c58b
18 lines
662 B
Bash
Executable file
18 lines
662 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019-present 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
|
|
|
|
# Homebrew's python@3.12 is marked as externally managed (PEP 668).
|
|
# Therefore, `--break-system-packages` is needed.
|
|
export PIP_PACKAGES="--break-system-packages zmq"
|
|
export GOAL="install"
|
|
export CMAKE_GENERATOR="Ninja"
|
|
export BITCOIN_CONFIG="-DBUILD_GUI=ON -DWITH_ZMQ=ON -DWITH_MINIUPNPC=ON -DWITH_NATPMP=ON -DREDUCE_EXPORTS=ON"
|
|
export CI_OS_NAME="macos"
|
|
export NO_DEPENDS=1
|
|
export OSX_SDK=""
|
|
export RUN_FUZZ_TESTS=true
|