File tree 3 files changed +13
-13
lines changed
actions/build-upload-mithril-artifact
3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 48
48
target/release/mithril-signer.exe
49
49
target/release/mithril-relay
50
50
target/release/mithril-relay.exe
51
+ target/release/load-aggregator
51
52
if-no-files-found : error
Original file line number Diff line number Diff line change @@ -55,17 +55,14 @@ jobs:
55
55
- name : Set permissions
56
56
shell : bash
57
57
working-directory : ./bin
58
- run : chmod +x ./mithril-aggregator
59
-
60
- - name : Build the aggregator stress test
61
- working-directory : mithril-test-lab/mithril-end-to-end
62
- run : make build
58
+ run : |
59
+ chmod +x ./mithril-aggregator
60
+ chmod +x ./load-aggregator
63
61
64
62
- name : Run the aggregator stress test
65
- working-directory : mithril-test-lab/mithril-end-to-end
66
63
run : |
67
- ./load-aggregator ${{ steps.prepare.outputs.debug_level }} \
68
- --cardano-cli-path script/mock-cardano-cli \
69
- --aggregator-dir ../.. /bin \
64
+ ./bin/ load-aggregator ${{ steps.prepare.outputs.debug_level }} \
65
+ --cardano-cli-path ./mithril-test-lab/mithril-end-to-end/ script/mock-cardano-cli \
66
+ --aggregator-dir ./bin \
70
67
--num-signers=${{ inputs.num_signers }} \
71
68
--num-clients=${{ inputs.num_clients }}
Original file line number Diff line number Diff line change 32
32
# We separate the build in 2 steps as we want to avoid side effects with Rust feature unification.
33
33
- name : Cargo build - Tooling
34
34
shell : bash
35
- run : cargo build --release -p mithril-end-to-end
35
+ run : cargo build --release --bin mithril-end-to-end --bin load-aggregator
36
36
37
37
- name : Build Mithril workspace & publish artifacts
38
38
uses : ./.github/workflows/actions/build-upload-mithril-artifact
58
58
- name : Publish End-to-end runner (${{ runner.os }}-${{ runner.arch }})
59
59
uses : actions/upload-artifact@v4
60
60
with :
61
- name : mithril-end-to-end-${{ runner.os }}-${{ runner.arch }}
62
- path : target/release/mithril-end-to-end
61
+ name : mithril-tooling-${{ runner.os }}-${{ runner.arch }}
62
+ path : |
63
+ target/release/mithril-end-to-end
64
+ target/release/load-aggregator
63
65
if-no-files-found : error
64
66
65
67
- name : Prepare test lab eras
@@ -302,7 +304,7 @@ jobs:
302
304
- name : Download rust test runner
303
305
uses : actions/download-artifact@v4
304
306
with :
305
- name : mithril-end-to-end -${{ runner.os }}-${{ runner.arch }}
307
+ name : mithril-tooling -${{ runner.os }}-${{ runner.arch }}
306
308
path : ./
307
309
308
310
- run : |
You can’t perform that action at this time.
0 commit comments