mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 03:33:27 -03:00
17 lines
458 B
Bash
17 lines
458 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Copyright (c) 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 CMAKE_GENERATOR="Ninja"
|
||
|
export BITCOIN_CONFIG="-DBUILD_FOR_FUZZING=ON"
|
||
|
export CI_OS_NAME="macos"
|
||
|
export NO_DEPENDS=1
|
||
|
export OSX_SDK=""
|
||
|
export RUN_UNIT_TESTS=false
|
||
|
export RUN_FUNCTIONAL_TESTS=false
|
||
|
export RUN_FUZZ_TESTS=true
|