cmark

My personal build of CMark ✏️

Commit
855361ca1c780827310f3bf1ba742232cb612da3
Parent
74e8f638ad1b5f259208e07621255a9e098cc4f3
Author
Leo Neat <lneat@google.com>
Date

Adding CIFuzz

Diffstat

1 file changed, 23 insertions, 0 deletions

Status File Name N° Changes Insertions Deletions
Added .github/workflows/fuzz.yml 23 23 0
diff --git a/.github/workflows/fuzz.yml 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