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
|
|
|
|
|
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"
|
2024-09-17 08:49:55 -03:00
|
|
|
export CMAKE_GENERATOR="Ninja"
|
2024-10-21 19:31:47 -03:00
|
|
|
export BITCOIN_CONFIG="-DBUILD_GUI=ON -DWITH_ZMQ=ON -DREDUCE_EXPORTS=ON"
|
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=""
|