Add CI workflow for fuzzing smoke tests#443
Merged
pdeljanov merged 4 commits intopdeljanov:dev-0.6from Feb 13, 2026
Merged
Conversation
This workflow installs cargo-fuzz and runs the 'run_all.sh' script for 10 seconds per target. This ensures that the fuzz targets continue to compile and run without immediate errors on every PR. Improvement on pdeljanov#149
Owner
|
A bit on the fence about this one since it would introduce non-determinism into the workflows. I think |
Contributor
Author
|
That's valid -- it would absolutely add a certain amount of non-determinism. I can add a fuzzing build target instead that just runs |
Contributor
Author
|
Can't seem to update the bug title for some reason, but I think this CL should be ready for another look. |
Owner
|
This makes sense to me. Perhaps once significant time has been spent fuzzing Symphonia we could add the smoke tests. |
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.
This patch adds a new step to the
checkjob that ensures that the fuzzing manifest builds correctly.This is necessary because the
run: cargo check --all --all-features --exclude symphonia-playstep does not build the fuzzer. As far as I can tell this is due to thefuzzdirectory defining its own[workspace]infuzz/Cargo.toml. This effectively detaches it from the main project workspace, so runningcargo check --allfrom the project root skips it.Improvement on #149