Commit f3ded5a 1 parent 5aa8244 commit f3ded5a Copy full SHA for f3ded5a
File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,8 @@ jobs:
192
192
193
193
- name : Download the proof params
194
194
uses : ./.github/workflows/proof-params-download.yml
195
+ with :
196
+ parameters-json-hash : ${{ hashFiles('filecoin-proofs/parameters.json') }}
195
197
196
198
- name : Test in release profile
197
199
run : cargo test --verbose --release --workspace --all-targets
Original file line number Diff line number Diff line change 1
1
name : Download proof params
2
2
3
3
on : workflow_call
4
- # workflow_call:
5
- # inputs:
6
- # config-path:
7
- # required: true
8
- # type: string
4
+ workflow_call :
5
+ inputs :
6
+ # The hash of the parameters.json file.
7
+ parameters-json-hash :
8
+ required : true
9
+ type : string
9
10
# secrets:
10
11
# token:
11
12
# required: true
26
27
- name : Download all Artifacts from proof-params workflow
27
28
uses : actions/download-artifact@v4
28
29
with :
29
- pattern : proof-params-v28-n-${{ hashFiles('filecoin-proofs/parameters. json') }}-*
30
+ pattern : proof-params-v28-n-${{ inputs.parameters- json-hash }}-*
30
31
path : /var/tmp/filecoin-proof-parameters/
31
32
merge-multiple : true
32
33
run-id : ${{ fromJson(steps.latest-proof-params.outputs.data).workflow_runs[0].id }}
You can’t perform that action at this time.
0 commit comments