Skip to content

Commit

Permalink
run fuzzer on memory and thread sanitizers on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocodutra committed Feb 20, 2022
1 parent f8cc94f commit 80642b4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -164,21 +164,22 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitizer: [address, leak]
sanitizer: [address, leak, memory, thread]
steps:
- uses: actions/checkout@master
- uses: actions-rs/toolchain@v1
with:
override: true
profile: minimal
toolchain: nightly
components: rust-src
- uses: actions-rs/install@v0.1
with:
crate: cargo-fuzz
- uses: actions-rs/cargo@v1
with:
command: fuzz
args: run -s ${{ matrix.sanitizer }} fuzzer -- -max_total_time=120
args: run -s ${{ matrix.sanitizer }} fuzzer -Z build-std -- -max_total_time=120

coverage:
needs: [test]
Expand Down

0 comments on commit 80642b4

Please sign in to comment.