commit 8ad964ffa56272ec4638453471bf198552cedcbd
parent 4c4898d99b8f49c5f1942faa63eab49b65bda82d
Author: MTRNord <mtrnord1@gmail.com>
Date: Mon, 14 Apr 2025 21:47:23 +0200
Setup a storage repo for fuzzing
Diffstat:
2 files changed, 4 insertions(+), 22 deletions(-)
diff --git a/.github/workflows/cflite_batch.yml b/.github/workflows/cflite_batch.yml
@@ -30,11 +30,7 @@ jobs:
mode: 'batch'
sanitizer: ${{ matrix.sanitizer }}
output-sarif: true
- # Optional but recommended: For storing certain artifacts from fuzzing.
- # See later section on "Git repo for storage".
- # storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/OWNER/STORAGE-REPO-NAME.git
- # storage-repo-branch: main # Optional. Defaults to "main"
- # storage-repo-branch-coverage: gh-pages # Optional. Defaults to "gh-pages".
+ storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/MTRNord/spank_olm_fuzz_storage.git
Coverage:
runs-on: ubuntu-latest
steps:
@@ -52,8 +48,4 @@ jobs:
fuzz-seconds: 600
mode: 'coverage'
sanitizer: 'coverage'
- # Optional but recommended.
- # See later section on "Git repo for storage".
- # storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/OWNER/STORAGE-REPO-NAME.git
- # storage-repo-branch: main # Optional. Defaults to "main"
- # storage-repo-branch-coverage: gh-pages # Optional. Defaults to "gh-pages".
+ storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/MTRNord/spank_olm_fuzz_storage.git
diff --git a/.github/workflows/cflite_pr.yml b/.github/workflows/cflite_pr.yml
@@ -25,12 +25,7 @@ jobs:
language: c++
github-token: ${{ secrets.GITHUB_TOKEN }}
sanitizer: ${{ matrix.sanitizer }}
- # Optional but recommended: used to only run fuzzers that are affected
- # by the PR.
- # See later section on "Git repo for storage".
- # storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/OWNER/STORAGE-REPO-NAME.git
- # storage-repo-branch: main # Optional. Defaults to "main"
- # storage-repo-branch-coverage: gh-pages # Optional. Defaults to "gh-pages".
+ storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/MTRNord/spank_olm_fuzz_storage.git
- name: Run Fuzzers (${{ matrix.sanitizer }})
id: run
uses: google/clusterfuzzlite/actions/run_fuzzers@v1
@@ -40,9 +35,4 @@ jobs:
mode: 'code-change'
sanitizer: ${{ matrix.sanitizer }}
output-sarif: true
- # Optional but recommended: used to download the corpus produced by
- # batch fuzzing.
- # See later section on "Git repo for storage".
- # storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/OWNER/STORAGE-REPO-NAME.git
- # storage-repo-branch: main # Optional. Defaults to "main"
- # storage-repo-branch-coverage: gh-pages # Optional. Defaults to "gh-pages".
+ storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/MTRNord/spank_olm_fuzz_storage.git