bf5ff1a8df
The default runtime for CIFuzz[1] is 600 seconds; use it. Since GitHub pull-requests are not the main contribution workflow the number of runs should be manageable. [1]: https://google.github.io/oss-fuzz/getting-started/continuous-integration/ Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
---
|
|
name: CIFuzz
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
Fuzzing:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'SELinuxProject/selinux'
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sanitizer: [address, undefined, memory]
|
|
steps:
|
|
- name: Build Fuzzers (${{ matrix.sanitizer }})
|
|
id: build
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
|
with:
|
|
oss-fuzz-project-name: 'selinux'
|
|
dry-run: false
|
|
allowed-broken-targets-percentage: 0
|
|
sanitizer: ${{ matrix.sanitizer }}
|
|
- name: Run Fuzzers (${{ matrix.sanitizer }})
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
|
with:
|
|
oss-fuzz-project-name: 'selinux'
|
|
fuzz-seconds: 600
|
|
dry-run: false
|
|
report-unreproducible-crashes: true
|
|
sanitizer: ${{ matrix.sanitizer }}
|
|
- name: Upload Crash
|
|
uses: actions/upload-artifact@v1
|
|
if: failure() && steps.build.outcome == 'success'
|
|
with:
|
|
name: ${{ matrix.sanitizer }}-artifacts
|
|
path: ./out/artifacts
|