diff options
| author | Leo Neat <lneat@google.com> | 2020-03-18 10:04:53 -0700 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2020-03-19 09:07:03 -0700 | 
| commit | 855361ca1c780827310f3bf1ba742232cb612da3 (patch) | |
| tree | 0bbc76ec46122278bd36233602e5bf3abfc636b1 /.github/workflows | |
| parent | 74e8f638ad1b5f259208e07621255a9e098cc4f3 (diff) | |
Adding CIFuzz
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/fuzz.yml | 23 | 
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml new file mode 100644 index 0000000..aec48b6 --- /dev/null +++ b/.github/workflows/fuzz.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: 'cmark' +        dry-run: false +    - name: Run Fuzzers +      uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master +      with: +        oss-fuzz-project-name: 'cmark' +        fuzz-seconds: 600 +        dry-run: false +    - name: Upload Crash +      uses: actions/upload-artifact@v1 +      if: failure() +      with: +        name: artifacts +        path: ./out/artifacts  | 
