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