From e1c5a567eea22895c97472e519ff4e0520f968c8 Mon Sep 17 00:00:00 2001 From: Deanna Garcia Date: Wed, 22 Mar 2023 13:11:05 -0700 Subject: [PATCH] Delete UPB fuzz GHA tests. Our new fuzzer tests in upb/util make this obsolete. PiperOrigin-RevId: 518653168 --- .github/workflows/cifuzz.yml | 29 ----------------------------- 1 file changed, 29 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 148e15d915..0000000000 --- a/.github/workflows/cifuzz.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: CIFuzz -on: [pull_request] -jobs: - Fuzzing: - runs-on: ubuntu-22-large - strategy: - fail-fast: false - matrix: - sanitizer: [address, undefined] - steps: - - name: Build Fuzzers (${{ matrix.sanitizer }}) - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master - with: - oss-fuzz-project-name: 'upb' - dry-run: false - sanitizer: ${{ matrix.sanitizer }} - - name: Run Fuzzers (${{ matrix.sanitizer }}) - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'upb' - fuzz-seconds: 600 - dry-run: false - sanitizer: ${{ matrix.sanitizer }} - - name: Upload Crash - uses: actions/upload-artifact@v1 - if: failure() - with: - name: ${{ matrix.sanitizer }}-artifacts - path: ./out/artifacts