2019-10-14 23:00:49 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 The Bitcoin Core developers
|
|
|
|
# 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-04-07 18:03:41 +02:00
|
|
|
export HOST=x86_64-apple-darwin19
|
2019-10-14 23:00:49 +02:00
|
|
|
export BREW_PACKAGES="automake berkeley-db4 libtool boost miniupnpc pkg-config protobuf qt qrencode python3 ccache zeromq"
|
|
|
|
export PIP_PACKAGES="zmq"
|
|
|
|
export RUN_CI_ON_HOST=true
|
|
|
|
export RUN_UNIT_TESTS=true
|
2022-03-25 09:24:16 +01:00
|
|
|
export RUN_INTEGRATION_TESTS=false
|
2019-10-14 23:00:49 +02:00
|
|
|
export GOAL="install"
|
2022-04-07 18:03:41 +02:00
|
|
|
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner --enable-werror"
|
2019-10-17 16:46:08 +02:00
|
|
|
# Run without depends
|
2019-10-14 23:00:49 +02:00
|
|
|
export NO_DEPENDS=1
|
2019-10-17 16:46:08 +02:00
|
|
|
export OSX_SDK=""
|