2019-08-15 22:51:31 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-08-16 19:27:31 +02:00
|
|
|
# Copyright (c) 2019-2020 The Bitcoin Core developers
|
2019-08-15 22:51:31 +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_cross
|
2023-06-19 15:22:31 +02:00
|
|
|
export HOST=x86_64-apple-darwin
|
2021-03-05 02:30:17 +01:00
|
|
|
export PACKAGES="cmake libz-dev libtinfo5 python3-setuptools"
|
2021-05-03 08:45:08 +02:00
|
|
|
export XCODE_VERSION=12.2
|
|
|
|
export XCODE_BUILD_ID=12B45b
|
2019-08-15 22:51:31 +02:00
|
|
|
export RUN_UNIT_TESTS=false
|
2024-01-19 22:48:01 +01:00
|
|
|
export RUN_FUNCTIONAL_TESTS=false
|
2022-04-07 18:03:41 +02:00
|
|
|
export GOAL="all deploy"
|
2020-12-04 07:23:49 +01:00
|
|
|
export BITCOIN_CONFIG="--with-gui --enable-reduce-exports --disable-miner --with-boost-process"
|