diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-02-22 14:09:23 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-02-22 14:09:23 +0900 |
| commit | 3ba32e80aff8aa8473ed81d12acc45ac0f4d6cd6 (patch) | |
| tree | 9751fe57c13e9f11f8939cc062eacafbfe8ba58d | |
| parent | ac5ec1a153cc2ac1b59d13d2bac1b59d48b554b0 (diff) | |
| parent | 4713502083b11bd595558c5ea43a1291f7bd4123 (diff) | |
| download | mruby-3ba32e80aff8aa8473ed81d12acc45ac0f4d6cd6.tar.gz mruby-3ba32e80aff8aa8473ed81d12acc45ac0f4d6cd6.zip | |
Merge pull request #4945 from Leo-Neat/master
Add CIFuzz action
| -rw-r--r-- | .github/workflows/main.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..3c1a7e07e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,24 @@ +name: CIFuzz +on: [pull_request] +jobs: + Fuzzing: + runs-on: ubuntu-latest + steps: + - name: Build Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master + with: + oss-fuzz-project-name: 'mruby' + dry-run: false + - name: Run Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master + with: + oss-fuzz-project-name: 'mruby' + fuzz-seconds: 600 + dry-run: false + - name: Upload Crash + uses: actions/upload-artifact@v1 + if: failure() + with: + name: artifacts + path: ./out/artifacts + |
