-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Creates a coverage report using only the ClusterFuzz corpus. | ||
# This complements our main coverage report, which only uses local test | ||
# vectors. As ClusterFuzz continually finds new things to fuzz, we run | ||
# this script daily. | ||
|
||
name: Coverage Report (ClusterFuzz) | ||
on: | ||
schedule: | ||
- cron: 30 11 * * * | ||
push: | ||
workflow_dispatch: | ||
jobs: | ||
coverage-report-clusterfuzz: | ||
name: Coverage Report (ClusterFuzz) | ||
runs-on: ubuntu-latest | ||
env: | ||
MACHINE: linux_clang_haswell | ||
EXTRAS: llvm-cov | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: ./.github/actions/deps | ||
- uses: ./.github/actions/hugepages | ||
|
||
- name: Build | ||
run: make -j fuzz-test | ||
|
||
- name: Replace corpus dir | ||
run: contrib/test/fetch_clusterfuzz_corpus.sh | ||
|
||
- name: Generate all coverage | ||
run: | | ||
make run-fuzz-test | ||
make build/linux/clang/haswell/cov/cov.lcov | ||
- name: Upload coverage report to CodeCov | ||
uses: codecov/codecov-action@v3 | ||
timeout-minutes: 5 | ||
with: | ||
files: build/linux/clang/haswell/cov/cov.lcov | ||
name: dist-cov-report-cf | ||
functionalities: search | ||
flags: clusterfuzz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Downloads the latest ClusterFuzz corpus. | ||
# WARNING: Destructive! | ||
|
||
rm -rf corpus | ||
|
||
gcloud storage ls gs://backup.isol-clusterfuzz.appspot.com/corpus/libFuzzer/ | | ||
while read -r dir | ||
do | ||
TARGET_FULL="$(basename "$dir")" # fuzz_base64-highend | ||
TARGET=$(sed -r 's/-[a-z]+$//' <<< "$TARGET_FULL") # fuzz_base64 | ||
|
||
CORPUS_DIR="corpus/$TARGET/$TARGET" | ||
mkdir -v -p "$CORPUS_DIR" | ||
|
||
TEMPFILE="$(mktemp)" | ||
gcloud storage cp "$dir"latest.zip "$TEMPFILE" | ||
|
||
TEMPDIR="$(mktemp -d)" | ||
unzip -q "$TEMPFILE" -d "$TEMPDIR" | ||
rm "$TEMPFILE" | ||
|
||
find "$TEMPDIR" -type f -exec mv -nt "$CORPUS_DIR" {} + | ||
rm -r "$TEMPDIR" | ||
done |