Squashed 'libs/libzmq/' content from commit 2b2fb9c7
git-subtree-dir: libs/libzmq git-subtree-split: 2b2fb9c7082dbc16c1323b97040a4edcfa2b997b
This commit is contained in:
35
.github/workflows/Fuzzers.yaml
vendored
Normal file
35
.github/workflows/Fuzzers.yaml
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
name: Fuzzers
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
paths:
|
||||
- '.github/workflows/Fuzzers.yaml'
|
||||
- 'src/*'
|
||||
- 'tests/*fuzzer.cpp'
|
||||
jobs:
|
||||
Fuzzing:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'zeromq/libzmq'
|
||||
strategy:
|
||||
matrix:
|
||||
san: [address, memory, undefined]
|
||||
steps:
|
||||
- name: Build Fuzzers (${{ matrix.san }})
|
||||
id: build
|
||||
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
||||
with:
|
||||
sanitizer: ${{ matrix.san }}
|
||||
oss-fuzz-project-name: 'libzmq'
|
||||
allowed-broken-targets-percentage: 0
|
||||
dry-run: false
|
||||
- name: Run Fuzzers (${{ matrix.san }})
|
||||
id: run
|
||||
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
||||
with:
|
||||
sanitizer: ${{ matrix.san }}
|
||||
oss-fuzz-project-name: 'libzmq'
|
||||
allowed-broken-targets-percentage: 0
|
||||
dry-run: false
|
||||
fuzz-seconds: 300
|
||||
Reference in New Issue
Block a user