-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Split out native fuzz jobs for macOS and windows
- Loading branch information
Showing
2 changed files
with
68 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/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 |