2019-10-14 18:00:49 -03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-08-09 05:59:43 -04:00
|
|
|
# Copyright (c) 2019-present The Bitcoin Core developers
|
2019-10-14 18:00:49 -03: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
|
|
|
|
|
2023-08-09 05:59:43 -04:00
|
|
|
export HOST=x86_64-apple-darwin
|
2024-03-10 10:09:03 -03:00
|
|
|
# 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"
|
2019-10-14 18:00:49 -03:00
|
|
|
export GOAL="install"
|
2022-10-25 05:49:16 -03:00
|
|
|
export BITCOIN_CONFIG="--with-gui --with-miniupnpc --with-natpmp --enable-reduce-exports"
|
2020-11-08 07:28:24 -03:00
|
|
|
export CI_OS_NAME="macos"
|
2019-10-14 18:00:49 -03:00
|
|
|
export NO_DEPENDS=1
|
2019-10-17 12:31:20 -03:00
|
|
|
export OSX_SDK=""
|
2023-08-09 05:59:43 -04:00
|
|
|
export CCACHE_MAXSIZE=400M
|
2023-06-22 05:49:28 -04:00
|
|
|
export RUN_FUZZ_TESTS=true
|