Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
ci: cache seed in fuzzer job (#3885)
Browse files Browse the repository at this point in the history
* ci: cache seed in fuzzer job

* change id based on binary
  • Loading branch information
ordian committed Sep 18, 2021
1 parent 4c54766 commit 07d1830
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/honggfuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
with:
fetch-depth: 1

- name: Cache Seed
id: cache-seed-round-trip
uses: actions/cache@v2
with:
path: erasure-coding/fuzzer/hfuzz_workspace
key: ${{ runner.os }}-erasure-coding

- name: Install minimal stable Rust
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -52,6 +59,13 @@ jobs:
with:
fetch-depth: 1

- name: Cache Seed
id: cache-seed-reconstruct
uses: actions/cache@v2
with:
path: erasure-coding/fuzzer/hfuzz_workspace
key: ${{ runner.os }}-erasure-coding

- name: Install minimal stable Rust
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit 07d1830

Please sign in to comment.