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

ci: cache seed in fuzzer job #3885

Merged
merged 2 commits into from
Sep 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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