2019-10-14 23:00:49 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-08-16 19:27:31 +02: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-02-10 14:50:29 +01:00
|
|
|
export CONTAINER_NAME=ci_macos
|
2023-06-19 15:22:31 +02:00
|
|
|
export HOST=x86_64-apple-darwin
|
2023-05-13 19:44:39 +02:00
|
|
|
export PIP_PACKAGES="zmq lief"
|
2019-10-14 23:00:49 +02:00
|
|
|
export GOAL="install"
|
2020-08-05 13:21:24 +02:00
|
|
|
export BITCOIN_CONFIG="--with-gui --enable-reduce-exports --disable-miner --enable-werror --with-boost-process"
|
2019-10-14 23:00:49 +02:00
|
|
|
export NO_DEPENDS=1
|
2019-10-17 16:46:08 +02:00
|
|
|
export OSX_SDK=""
|
2020-07-14 08:38:37 +02:00
|
|
|
export CCACHE_SIZE=300M
|
|
|
|
|
|
|
|
export RUN_SECURITY_TESTS="true"
|
|
|
|
if [ "$TRAVIS_REPO_SLUG" != "dashpay/dash" ]; then
|
|
|
|
export RUN_FUNCTIONAL_TESTS="false"
|
|
|
|
export EXPECTED_TESTS_DURATION_IN_SECONDS=200
|
|
|
|
fi
|