Skip to content

Commit 38dd051

Browse files
committed
chore: try to run the reusable workflow
1 parent f3ded5a commit 38dd051

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,14 @@ jobs:
9090
# compression-level: 0
9191
# if-no-files-found: error
9292

93+
download-proof-params:
94+
name: Download the proof params
95+
uses: ./.github/workflows/proof-params-download.yml
96+
with:
97+
parameters-json-hash: ${{ hashFiles('filecoin-proofs/parameters.json') }}
98+
9399
test_release:
94-
needs: set-msrv
100+
needs: [set-msrv, download-proof-params]
95101
runs-on: ubuntu-latest
96102
name: Test in release mode
97103
steps:
@@ -190,10 +196,10 @@ jobs:
190196
#- name: List parameter files
191197
# run: ls -al /var/tmp/filecoin-proof-parameters/
192198

193-
- name: Download the proof params
194-
uses: ./.github/workflows/proof-params-download.yml
195-
with:
196-
parameters-json-hash: ${{ hashFiles('filecoin-proofs/parameters.json') }}
199+
#- name: Download the proof params
200+
# uses: ./.github/workflows/proof-params-download.yml
201+
# with:
202+
# parameters-json-hash: ${{ hashFiles('filecoin-proofs/parameters.json') }}
197203

198204
- name: Test in release profile
199205
run: cargo test --verbose --release --workspace --all-targets

0 commit comments

Comments
 (0)