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
|
|
|
|
|
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"
|
2024-09-17 12:49:55 +01:00
|
|
|
export CMAKE_GENERATOR="Ninja"
|
2024-10-22 00:31:47 +02:00
|
|
|
export BITCOIN_CONFIG="-DBUILD_GUI=ON -DWITH_ZMQ=ON -DREDUCE_EXPORTS=ON"
|
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=""
|