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
|
|
|
|
|
2020-11-18 21:38:21 +08:00
|
|
|
export HOST=x86_64-apple-darwin18
|
2019-10-14 23:00:49 +02:00
|
|
|
export PIP_PACKAGES="zmq"
|
|
|
|
export GOAL="install"
|
2020-11-26 19:01:19 +02:00
|
|
|
export BITCOIN_CONFIG="--with-gui --enable-reduce-exports --with-boost-process"
|
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
|
2020-07-13 18:18:42 +03:00
|
|
|
|
|
|
|
export RUN_SECURITY_TESTS="true"
|