File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
inputs :
6
6
commit_sha :
7
- description : SHA of the commit on which the load- aggregator binary should be obtained.
7
+ description : SHA of the commit on which the aggregator binary should be obtained.
8
8
required : true
9
9
type : string
10
10
num_signers :
29
29
steps :
30
30
- name : Checkout sources
31
31
uses : actions/checkout@v4
32
- with :
33
- ref : ${{ inputs.commit_sha }}
34
32
35
33
- name : Prepare environment variables
36
34
id : prepare
45
43
with :
46
44
toolchain : stable
47
45
46
+ - name : Download built artifacts (Linux-x64)
47
+ uses : dawidd6/action-download-artifact@v3
48
+ with :
49
+ name : mithril-distribution-Linux-X64
50
+ path : ./bin
51
+ commit : ${{ inputs.commit_sha }}
52
+ workflow : ci.yml
53
+ workflow_conclusion : success
54
+
55
+ - name : Set permissions
56
+ shell : bash
57
+ working-directory : ./bin
58
+ run : chmod +x ./mithril-aggregator
59
+
48
60
- name : Build the aggregator stress test
49
61
working-directory : mithril-test-lab/mithril-end-to-end
50
62
run : make build
54
66
run : |
55
67
./load-aggregator ${{ steps.prepare.outputs.debug_level }} \
56
68
--cardano-cli-path script/mock-cardano-cli \
57
- --aggregator-dir ../../target/release \
69
+ --aggregator-dir ../../bin \
58
70
--num-signers=${{ inputs.num_signers }} \
59
71
--num-clients=${{ inputs.num_clients }}
You can’t perform that action at this time.
0 commit comments