2019-10-14 23:00:49 +02:00
#!/usr/bin/env bash
#
2020-04-16 13:14:08 -04:00
# Copyright (c) 2019-2020 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
2019-11-21 11:08:47 -05:00
export HOST = x86_64-apple-darwin16
2020-06-13 09:15:00 -04:00
export DOCKER_NAME_TAG = ubuntu:18.04 # Check that bionic can cross-compile to macos (bionic is used in the gitian build as well)
2019-10-14 23:00:49 +02:00
export PIP_PACKAGES = "zmq"
export GOAL = "install"
2019-10-12 12:49:29 -04: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
2020-03-26 11:38:24 +08:00
export RUN_SECURITY_TESTS = "true"
2019-10-17 11:31:20 -04:00
# Run without depends
2019-10-14 23:00:49 +02:00
export NO_DEPENDS = 1
2019-10-17 11:31:20 -04:00
export OSX_SDK = ""