Edit

kc3-lang/libevent/.github/workflows/cifuzz.yml

Branch :

  • Show log

    Commit

  • Author : Cœur
    Date : 2024-05-04 18:04:14
    Hash : 7ede5af6
    Message : Updating deprecated GitHub actions (#1629) * Updating deprecated GitHub actions * code review: use commit hash for actions

  • .github/workflows/cifuzz.yml
  • name: CIFuzz
    on:
      pull_request:
        types:
          - synchronize
          - reopened
          - opened
        branches:
          - master
        push:
      push:
        branches:
          - master
    permissions: read-all
    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: 'libevent'
            language: c++
        - name: Run Fuzzers
          uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
          with:
            oss-fuzz-project-name: 'libevent'
            fuzz-seconds: 300
            language: c++
        - name: Upload Crash
          uses: actions/upload-artifact@v4
          if: failure() && steps.build.outcome == 'success'
          with:
            name: artifacts
            path: ./out/artifacts