| 12345678910111213141516171819202122232425262728293031323334 |
- name: CIFuzz
- on:
- pull_request:
- branches: [ "master" ]
- schedule:
- - cron: "30 0 * * *"
- # Allows you to run this workflow manually from the Actions tab
- workflow_dispatch:
- jobs:
- Fuzzing:
- runs-on: ubuntu-latest
- permissions:
- contents: read
- steps:
- - name: Build Fuzzers
- id: build
- uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
- with:
- oss-fuzz-project-name: 'kamailio'
- dry-run: false
- language: c
- - name: Run Fuzzers
- uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
- with:
- oss-fuzz-project-name: 'kamailio'
- fuzz-seconds: 600
- dry-run: false
- language: c
- - name: Upload Crash
- uses: actions/upload-artifact@v4
- if: failure() && steps.build.outcome == 'success'
- with:
- name: artifacts
- path: ./out/artifacts
|