comparison mupdf-source/thirdparty/tesseract/.github/workflows/cifuzz.yml @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 name: CIFuzz
2 # OSS-Fuzz CI
3 # See https://google.github.io/oss-fuzz/getting-started/continuous-integration/
4 on:
5 pull_request:
6 branches:
7 - main
8 paths:
9 - '**.cpp'
10 - '**.h'
11 jobs:
12 Fuzzing:
13 runs-on: ubuntu-latest
14 steps:
15 - name: Build Fuzzers
16 id: build
17 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
18 with:
19 oss-fuzz-project-name: 'tesseract-ocr'
20 language: c++
21 dry-run: false
22 - name: Run Fuzzers
23 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
24 with:
25 oss-fuzz-project-name: 'tesseract-ocr'
26 fuzz-seconds: 600
27 dry-run: false
28 - name: Upload Crash
29 uses: actions/upload-artifact@v4
30 if: failure() && steps.build.outcome == 'success'
31 with:
32 name: artifacts
33 path: ./out/artifacts