From 4bd4dde7242c3bf160cefea2d89f6110f4fa34bf Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 10 Feb 2021 10:31:23 +0100 Subject: [PATCH] github: remove cifuzz from stable branch It requires many changes from the master branch to make fuzzer usable. For now it's overkill to backport it to the stable/2.36 Signed-off-by: Karel Zak --- .github/workflows/cifuzz.yml | 42 ------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/cifuzz.yml diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml deleted file mode 100644 index a567bbe6da..0000000000 --- a/.github/workflows/cifuzz.yml +++ /dev/null @@ -1,42 +0,0 @@ ---- -# vi: ts=2 sw=2 et: -# See: https://google.github.io/oss-fuzz/getting-started/continuous-integration/ - -name: CIFuzz -on: - push: - branches: - - master - pull_request: - paths: - - '**' -jobs: - Fuzzing: - runs-on: ubuntu-latest - if: github.repository == 'karelzak/util-linux' - strategy: - fail-fast: false - matrix: - sanitizer: [address, undefined] - steps: - - name: Build Fuzzers (${{ matrix.sanitizer }}) - id: build - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master - with: - oss-fuzz-project-name: 'util-linux' - dry-run: false - allowed-broken-targets-percentage: 0 - sanitizer: ${{ matrix.sanitizer }} - - name: Run Fuzzers (${{ matrix.sanitizer }}) - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'util-linux' - fuzz-seconds: 180 - dry-run: false - sanitizer: ${{ matrix.sanitizer }} - - name: Upload Crash - uses: actions/upload-artifact@v1 - if: failure() && steps.build.outcome == 'success' - with: - name: ${{ matrix.sanitizer }}-artifacts - path: ./out/artifacts -- 2.47.2