2021-07-10 14:03:01 +02:00
|
|
|
---
|
|
|
|
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'
|
2021-12-09 17:48:54 +01:00
|
|
|
fuzz-seconds: 600
|
2021-07-10 14:03:01 +02:00
|
|
|
dry-run: false
|
2021-12-09 17:48:53 +01:00
|
|
|
report-unreproducible-crashes: true
|
2021-07-10 14:03:01 +02:00
|
|
|
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
|