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 RUN_UNIT_TESTS=true
|
2022-03-25 09:24:16 +01:00
|
|
|
export RUN_INTEGRATION_TESTS=false
|
2023-06-04 19:52:35 +02:00
|
|
|
export RUN_SECURITY_TESTS="true"
|
2019-10-14 23:00:49 +02:00
|
|
|
export GOAL="install"
|
2022-04-07 18:03:41 +02:00
|
|
|
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner --enable-werror"
|
2019-10-17 16:46:08 +02:00
|
|
|
# Run without depends
|
2019-10-14 23:00:49 +02:00
|
|
|
export NO_DEPENDS=1
|
2019-10-17 16:46:08 +02:00
|
|
|
export OSX_SDK=""
|