Skip to content

Commit

Permalink
chore: fix cache job name
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Aug 28, 2024
1 parent b559c5d commit 326f88d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
# run: cargo run --release --no-default-features --bin paramcache -- --sector-sizes='2048'

- name: Restore proof parameters cache 2KiB
id: cache-parameters
id: cache-parameters-2048
uses: actions/cache/restore@v4
with:
path: /var/tmp/filecoin-proof-parameters/
Expand All @@ -118,7 +118,7 @@ jobs:
run: ls -al /var/tmp/filecoin-proof-parameters/

- name: Restore proof parameters cache 4KiB
id: cache-parameters
id: cache-parameters-4096
uses: actions/cache/restore@v4
with:
path: /var/tmp/filecoin-proof-parameters/
Expand All @@ -128,6 +128,7 @@ jobs:
run: ls -al /var/tmp/filecoin-proof-parameters/

- name: Test in release profile
if: steps.cache-parameters-2048.outputs.cache-hit != 'true' && steps.cache-parameters-4096.outputs.cache-hit != 'true'
run: cargo test --verbose --release --workspace --all-targets
## Some `storage-proofs-update` tests need to run sequentially due
## to their high memory usage.
Expand Down

0 comments on commit 326f88d

Please sign in to comment.