Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
822 B
30 lines
822 B
4 years ago
|
name: CIFuzz
|
||
|
on: [pull_request]
|
||
|
jobs:
|
||
|
Fuzzing:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
sanitizer: [address, undefined]
|
||
|
steps:
|
||
|
- name: Build Fuzzers (${{ matrix.sanitizer }})
|
||
|
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
||
|
with:
|
||
|
oss-fuzz-project-name: 'upb'
|
||
|
dry-run: false
|
||
|
sanitizer: ${{ matrix.sanitizer }}
|
||
|
- name: Run Fuzzers (${{ matrix.sanitizer }})
|
||
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
||
|
with:
|
||
|
oss-fuzz-project-name: 'upb'
|
||
|
fuzz-seconds: 600
|
||
|
dry-run: false
|
||
|
sanitizer: ${{ matrix.sanitizer }}
|
||
|
- name: Upload Crash
|
||
|
uses: actions/upload-artifact@v1
|
||
|
if: failure()
|
||
|
with:
|
||
|
name: ${{ matrix.sanitizer }}-artifacts
|
||
|
path: ./out/artifacts
|