File: cifuzz.yml

package info (click to toggle)
libjoda-time-java 2.14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,356 kB
  • sloc: java: 88,384; xml: 8,101; makefile: 5
file content (31 lines) | stat: -rw-r--r-- 794 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: CIFuzz
on: [pull_request]
permissions:
# to fetch the artifacts
  actions: read
# to clone the repo
  contents: read
jobs:
  Fuzzing:
    runs-on: ubuntu-latest
    steps:
    - name: Build Fuzzers
      id: build
      uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
      with:
        oss-fuzz-project-name: 'joda-time'
        dry-run: false
        language: jvm
    - name: Run Fuzzers
      uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
      with:
        oss-fuzz-project-name: 'joda-time'
        fuzz-seconds: 300
        dry-run: false
        language: jvm
    - name: Upload Crash
      uses: actions/upload-artifact@v4
      if: failure() && steps.build.outcome == 'success'
      with:
        name: artifacts
        path: ./out/artifacts