Add Continuous Fuzzing GitHub Actions workflow#294
Merged
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
./github/workflows/continuous-fuzzing.ymlthat runs on a nightlycron, on pull requests tomain, and viaworkflow_dispatch.fuzz_aspec_verify,fuzz_ledger_ops,fuzz_etl_ops,fuzz_etl_read_entry,fuzz_probe_detector) and setfail-fast: falseso all targets run even if one fails.cargo-fuzzandcargo-llvm-cov, restore and persist per-target corpora withactions/cache, ensure corpus directories, and runcargo fuzz run <target> fuzz/corpus/<target> -- -max_total_time=300 -print_final_stats=1for each target.cargo llvm-cov(coverage step markedcontinue-on-error: true) with coverage reports uploaded as artifacts.Testing
cargo fmt --checkwhich succeeded.cargo clippy --workspace --all-targets -- -D warningswhich succeeded.cargo test --workspace; the test/build process began but did not complete within this environment before it was manually terminated.Codex Task