2019-10-14 18:00:49 -03:00
#!/usr/bin/env bash
#
2020-04-16 13:14:08 -04:00
# Copyright (c) 2019-2020 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
2019-11-21 13:08:47 -03:00
export HOST = x86_64-apple-darwin16
2019-10-14 18:00:49 -03:00
export PIP_PACKAGES = "zmq"
export GOAL = "install"
2019-10-12 13:49:29 -03:00
export BITCOIN_CONFIG = "--enable-gui --enable-reduce-exports --enable-werror"
2020-04-28 07:12:47 -04:00
export TEST_RUNNER_EXTRA = "wallet_disable" # Only run wallet_disable as a smoke test, see https://github.com/bitcoin/bitcoin/pull/17240#issuecomment-546022121 why the other tests are disabled
2019-10-17 12:31:20 -03:00
# Run without depends
2019-10-14 18:00:49 -03:00
export NO_DEPENDS = 1
2019-10-17 12:31:20 -03:00
export OSX_SDK = ""