From e8fa86d630e1aed3c314d3b917ce822265348c4b Mon Sep 17 00:00:00 2001 From: Alexander Karpinsky Date: Tue, 4 Jan 2022 17:32:18 +0300 Subject: [PATCH] Exclude CIFuzz tests --- .github/workflows/cifuzz.yml | 49 ------------------------------------ 1 file changed, 49 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 7e2fbf28f..000000000 --- a/.github/workflows/cifuzz.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: CIFuzz - -on: - push: - paths: - - "**.c" - - "**.h" - pull_request: - paths: - - "**.c" - - "**.h" - workflow_dispatch: - -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: 'pillow' - language: python - dry-run: false - - name: Run Fuzzers - id: run - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'pillow' - fuzz-seconds: 600 - language: python - dry-run: false - - name: Upload New Crash - uses: actions/upload-artifact@v2 - if: failure() && steps.build.outcome == 'success' - with: - name: artifacts - path: ./out/artifacts - - name: Upload Legacy Crash - uses: actions/upload-artifact@v2 - if: steps.run.outcome == 'success' - with: - name: crash - path: ./out/crash* - - name: Fail on legacy crash - if: success() - run: | - [ ! -e out/crash-* ] - echo No legacy crash detected