mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
16 lines
458 B
Bash
Executable file
16 lines
458 B
Bash
Executable file
#!/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
|