CI: fix Test job #7118
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CIFuzz | |
| on: [push, pull_request] | |
| jobs: | |
| Fuzzing: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sanitizer: [address, undefined, memory] | |
| steps: | |
| - name: Build Fuzzers - ${{ matrix.sanitizer }} | |
| uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master | |
| with: | |
| oss-fuzz-project-name: 'ndpi' | |
| dry-run: false | |
| sanitizer: ${{ matrix.sanitizer }} | |
| - name: Run Fuzzers - ${{ matrix.sanitizer }} | |
| uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master | |
| with: | |
| oss-fuzz-project-name: 'ndpi' | |
| fuzz-seconds: 300 | |
| dry-run: false | |
| sanitizer: ${{ matrix.sanitizer }} | |
| - name: Upload Crash (upload detected crash as artifacts) | |
| uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.sanitizer }}-artifacts | |
| path: ./out/artifacts |