ci: cache seed in fuzzer job (#3885)

* ci: cache seed in fuzzer job

* change id based on binary
This commit is contained in:
Andronik Ordian
2021-09-18 12:02:30 +02:00
committed by GitHub
parent 706f142516
commit fa4e5131fb
+14
View File
@@ -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:
@@ -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: