aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatena cyber <35799796+catenacyber@users.noreply.github.com>2021-10-25 17:32:35 +0200
committerGitHub <noreply@github.com>2021-10-26 00:32:35 +0900
commit9537be5eb30709e6c022f8d2554161e3d19174ab (patch)
tree79166fa36d1e53765f90f081694f26fbc6c4173c
parentsqlite3_test.go: Fix go test -run=...: Use standard sub-tests (#881) (diff)
downloadgolite-9537be5eb30709e6c022f8d2554161e3d19174ab.tar.gz
golite-9537be5eb30709e6c022f8d2554161e3d19174ab.tar.xz
Adds CIFuzz for fuzzing as continuous integration (#919)
-rw-r--r--.github/workflows/cifuzz.yaml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/cifuzz.yaml b/.github/workflows/cifuzz.yaml
new file mode 100644
index 0000000..e198c52
--- /dev/null
+++ b/.github/workflows/cifuzz.yaml
@@ -0,0 +1,29 @@
+name: CIFuzz
+on: [pull_request]
+jobs:
+ Fuzzing:
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ sanitizer: [address]
+ steps:
+ - name: Build Fuzzers (${{ matrix.sanitizer }})
+ uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
+ with:
+ oss-fuzz-project-name: 'go-sqlite3'
+ 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: 'go-sqlite3'
+ 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