forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
396573d
commit 1b12e38
Showing
4 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright (c) 2019-2020 The Bitcoin Core developers | ||
# 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 | ||
|
||
export CONTAINER_NAME=ci_arm-macos_cross | ||
export HOST=aarch64-apple-darwin | ||
export PACKAGES="cmake libcap-dev libz-dev libbz2-dev python3-dev python3-setuptools" | ||
export XCODE_VERSION=12.2 | ||
export XCODE_BUILD_ID=12B45b | ||
export RUN_UNIT_TESTS=false | ||
export RUN_INTEGRATION_TESTS=false | ||
export GOAL="all deploy" | ||
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner --enable-werror" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright (c) 2019-2020 The Bitcoin Core developers | ||
# 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 | ||
|
||
export CONTAINER_NAME=ci_arm-macos | ||
export HOST=aarch64-apple-darwin | ||
export PIP_PACKAGES="zmq lief" | ||
export RUN_UNIT_TESTS=true | ||
export RUN_INTEGRATION_TESTS=false | ||
export RUN_SECURITY_TESTS="true" | ||
export GOAL="install" | ||
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner --enable-werror" | ||
# Run without depends | ||
export NO_DEPENDS=1 | ||
export OSX_SDK="" |