ci: add criterion benchmarks and OSS-Fuzz integration#80
Open
nightness wants to merge 2 commits intowebrtc-rs:masterfrom
Open
ci: add criterion benchmarks and OSS-Fuzz integration#80nightness wants to merge 2 commits intowebrtc-rs:masterfrom
nightness wants to merge 2 commits intowebrtc-rs:masterfrom
Conversation
- .github/workflows/bench.yml: runs cargo bench for all 7 crates with criterion benchmarks (rtp, rtcp, stun, sdp, srtp, turn, media) on every push/PR to master; uses github-action-benchmark to track regressions and alert on >10% slowdowns - .github/workflows/release.yml: on version tags, generates CHANGELOG.md via git-cliff and creates a GitHub Release with the generated notes - .cliff.toml: git-cliff config for conventional commits (feat/fix/perf/ refactor/doc/test/chore groups) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- .github/workflows/fuzz.yml: daily scheduled fuzzing of all 87 targets across rtc-dtls (29), rtc-sctp (30), rtc-rtcp (24), rtc-sdp (2), rtc-stun (1), rtc-rtp (1) using cargo-fuzz with libfuzzer; crashes uploaded as artifacts for triage; can also be triggered manually with configurable duration - oss-fuzz/: configuration to submit to Google's OSS-Fuzz continuous fuzzing platform (project.yaml, Dockerfile, build.sh); submit via PR to https://github.com/google/oss-fuzz to enable cloud-scale fuzzing Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
.github/workflows/bench.ymlto run criterion benchmarks on every push and track regressionsoss-fuzz/projects/webrtc-rs/config files (build.sh, Dockerfile, project.yaml) to enable Google OSS-Fuzz cloud fuzzingTest plan
bench.ymlruns on CI without errorsoss-fuzz/infra/helper.py check_build webrtc-rs🤖 Generated with Claude Code