From 29a9cc7d6fda02a1291daf723ba5ae33fccf48ee Mon Sep 17 00:00:00 2001 From: Ilya Lipnitskiy Date: Sun, 28 Sep 2025 16:13:21 -0700 Subject: [PATCH] Revert "Create cifuzz.yml" This reverts commit 1a50ffbb8afa19134cd143711e0b32d26c373d30. --- .github/workflows/cifuzz.yml | 30 ------------------------------ 1 file changed, 30 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 097930a..0000000 --- a/.github/workflows/cifuzz.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: CIFuzz -on: [pull_request] -jobs: - Fuzzing: - runs-on: ubuntu-latest - strategy: - fail-fast: true - matrix: - sanitizer: [address, undefined, memory] - steps: - - name: Build Fuzzers - id: build - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master - with: - oss-fuzz-project-name: 'libcue' - dry-run: false - sanitizer: ${{ matrix.sanitizer }} - - name: Run Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'libcue' - fuzz-seconds: 600 - dry-run: false - sanitizer: ${{ matrix.sanitizer }} - - name: Upload Crash - uses: actions/upload-artifact@v1 - if: failure() && steps.build.outcome == 'success' - with: - name: artifacts - path: ./out/artifacts