From 451dcbbb9a750cdb95761b4001062dbb3257505a Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Mon, 11 Jan 2021 09:14:03 +0100 Subject: [PATCH] Adds CIFuzz --- .github/workflows/cifuzz.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/cifuzz.yml diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml new file mode 100644 index 0000000000..092b1079ff --- /dev/null +++ b/.github/workflows/cifuzz.yml @@ -0,0 +1,29 @@ +name: CIFuzz +on: [pull_request] +jobs: + Fuzzing: + runs-on: ubuntu-latest + 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