2019-10-14 23:00:49 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2022-12-24 23:49:50 +00:00
|
|
|
# Copyright (c) 2019-2022 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
|
|
|
|
|
2022-10-25 09:49:16 +01:00
|
|
|
export HOST=arm64-apple-darwin
|
|
|
|
export PIP_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=""
|
2020-07-13 23:51:29 +03:00
|
|
|
export CCACHE_SIZE=300M
|