view mupdf-source/thirdparty/zlib/.github/workflows/fuzz.yml @ 9:b2d41d02518f

Use the LLVM compilers by symlinking them in the venv. This is because CC= and CXX= do not work for some subprojects.
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 17 Sep 2025 06:11:34 +0200
parents b50eed0cc0ef
children
line wrap: on
line source

name: OSS-Fuzz
on: [pull_request]
jobs:
  Fuzzing:
    runs-on: ubuntu-latest
    steps:
    - name: Build Fuzzers
      uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
      with:
        oss-fuzz-project-name: 'zlib'
        dry-run: false

    - name: Run Fuzzers
      uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
      with:
        oss-fuzz-project-name: 'zlib'
        fuzz-seconds: 300
        dry-run: false

    - name: Upload Crash
      uses: actions/upload-artifact@v3
      if: failure()
      with:
        name: artifacts
        path: ./out/artifacts