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
|
|
|
|
|
2021-06-28 03:54:08 -04:00
|
|
|
export HOST=x86_64-apple-darwin19
|
2021-04-13 00:40:15 -04:00
|
|
|
export PIP_PACKAGES="zmq lief"
|
2019-10-14 18:00:49 -03:00
|
|
|
export GOAL="install"
|
2020-06-16 12:56:11 -04:00
|
|
|
export BITCOIN_CONFIG="--with-gui --enable-reduce-exports"
|
2020-11-08 07:28:24 -03:00
|
|
|
export CI_OS_NAME="macos"
|
2019-10-14 18:00:49 -03:00
|
|
|
export NO_DEPENDS=1
|
2019-10-17 12:31:20 -03:00
|
|
|
export OSX_SDK=""
|
2020-07-13 16:51:29 -04:00
|
|
|
export CCACHE_SIZE=300M
|
2020-07-13 11:18:42 -04:00
|
|
|
export RUN_SECURITY_TESTS="true"
|