diff options
author | Philippe Antoine <contact@catenacyber.fr> | 2020-04-18 10:50:56 +0200 |
---|---|---|
committer | Philippe Antoine <contact@catenacyber.fr> | 2020-04-18 10:50:56 +0200 |
commit | db5f3b38b7d5145e45ec4d32cd933eb02e8a4f47 (patch) | |
tree | e4afe41e401cd01c67cbe94029db1cf5703cb01b /.github/workflows | |
parent | da0889d3ba9c83bf65c8a5656c31ab54f6252329 (diff) |
Adds CIFuzz to check PRs
cf https://google.github.io/oss-fuzz/getting-started/continuous-integration/
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cifuzz.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml new file mode 100644 index 000000000..ed7b56f2a --- /dev/null +++ b/.github/workflows/cifuzz.yml @@ -0,0 +1,23 @@ +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: 'ndpi' + dry-run: false + - name: Run Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master + with: + oss-fuzz-project-name: 'ndpi' + fuzz-seconds: 600 + dry-run: false + - name: Upload Crash + uses: actions/upload-artifact@v1 + if: failure() + with: + name: artifacts + path: ./out/artifacts |