You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow-up from #51. The current fuzz CI runs each target for 60 seconds per PR, which is good for regression but insufficient for deep coverage exploration.
Proposal
Add a scheduled GitHub Actions workflow (e.g. weekly cron) that:
Runs each fuzz target for a longer duration (e.g. 30 minutes)
Stores the accumulated corpus as a build artifact or in a dedicated branch
Re-uses the corpus across runs for incremental coverage growth
Opens an issue automatically if any crashes are found
Reference
The current fuzz infrastructure is in fuzz/ with make fuzz-run FUZZ_DURATION=<seconds>.
Context
Follow-up from #51. The current fuzz CI runs each target for 60 seconds per PR, which is good for regression but insufficient for deep coverage exploration.
Proposal
Add a scheduled GitHub Actions workflow (e.g. weekly cron) that:
Reference
The current fuzz infrastructure is in
fuzz/withmake fuzz-run FUZZ_DURATION=<seconds>.