mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-14 01:37:56 +08:00
Problem: fuzzing Github action ran on pushes on forks and fails
Solution: run in on PRs only as oss-fuzz uses Docker so the repository is hard-coded
This commit is contained in:
parent
346f8b8b20
commit
fd3e5daaeb
9
.github/workflows/CI.yaml
vendored
9
.github/workflows/CI.yaml
vendored
@ -89,12 +89,3 @@ jobs:
|
|||||||
shell: cmd
|
shell: cmd
|
||||||
working-directory: build_libzmq
|
working-directory: build_libzmq
|
||||||
run: ctest -C "%Configuration%"
|
run: ctest -C "%Configuration%"
|
||||||
Fuzzing:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Build Fuzzers
|
|
||||||
id: build
|
|
||||||
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
|
||||||
with:
|
|
||||||
oss-fuzz-project-name: 'libzmq'
|
|
||||||
dry-run: false
|
|
||||||
|
13
.github/workflows/Fuzzers.yaml
vendored
Normal file
13
.github/workflows/Fuzzers.yaml
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name: Fuzzers
|
||||||
|
on: [pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Fuzzing:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Build Fuzzers
|
||||||
|
id: build
|
||||||
|
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
||||||
|
with:
|
||||||
|
oss-fuzz-project-name: 'libzmq'
|
||||||
|
dry-run: false
|
Loading…
x
Reference in New Issue
Block a user