comparison mupdf-source/thirdparty/tesseract/.github/workflows/cifuzz.yml @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents b50eed0cc0ef
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
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