Skip to content

Commit

Permalink
ci(fuzz): Enable renaming in all fuzz jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed Sep 28, 2024
1 parent 5dc420a commit 2f067c5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ jobs:
with:
command: afl
args: showmap -C -i out -o map -- ${{ github.workspace }}/fuzz_read/target/debug/fuzz_read
- name: Rename files
run: rename 's/:/-/' map/*
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -204,6 +206,8 @@ jobs:
with:
command: afl
args: showmap -C -i out -o map -- ${{ github.workspace }}/fuzz_read/target/debug/fuzz_read
- name: Rename files
run: rename 's/:/-/' map/*
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -267,6 +271,8 @@ jobs:
with:
command: afl
args: showmap -C -i out -o map -- ${{ github.workspace }}/fuzz_write/target/debug/fuzz_write
- name: Rename files
run: rename 's/:/-/' map/*
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 2f067c5

Please sign in to comment.