Skip to content

Commit a6bf21b

Browse files
committed
feat(ci): support for aggregate signature type selection
1 parent 49a6908 commit a6bf21b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ jobs:
345345
cardano_node_version: ["10.4.1", "10.5.1"]
346346
hard_fork_latest_era_at_epoch: [0]
347347
run_id: ["#1", "#2", "#3"]
348-
extra_args: [""]
348+
extra_args: ["--aggregate-signature-type=Concatenation"]
349349

350350
include:
351351
# Include a test for partial decentralization with leader/follower signer registration and P2P signature registration
@@ -355,31 +355,31 @@ jobs:
355355
cardano_node_version: "10.4.1"
356356
hard_fork_latest_era_at_epoch: 0
357357
run_id: "#1"
358-
extra_args: "--number-of-aggregators=2 --use-relays --relay-signer-registration-mode=passthrough --relay-signature-registration-mode=p2p"
358+
extra_args: "--number-of-aggregators=2 --use-relays --relay-signer-registration-mode=passthrough --relay-signature-registration-mode=p2p --aggregate-signature-type=Concatenation"
359359
# Include a test for full dedentralization P2P signer registration and P2P signature registration
360360
- mode: "decentralized"
361361
era: ${{ fromJSON(needs.build-ubuntu.outputs.eras)[0] }}
362362
next_era: ""
363363
cardano_node_version: "10.4.1"
364364
hard_fork_latest_era_at_epoch: 0
365365
run_id: "#1"
366-
extra_args: "--number-of-aggregators=2 --use-relays --relay-signer-registration-mode=p2p --relay-signature-registration-mode=p2p"
366+
extra_args: "--number-of-aggregators=2 --use-relays --relay-signer-registration-mode=p2p --relay-signature-registration-mode=p2p --aggregate-signature-type=Concatenation"
367367
# Include a test for the era switch without regenesis
368368
- mode: "std"
369369
era: ${{ fromJSON(needs.build-ubuntu.outputs.eras)[0] }}
370370
next_era: ${{ fromJSON(needs.build-ubuntu.outputs.eras)[1] }}
371371
cardano_node_version: "10.4.1"
372372
hard_fork_latest_era_at_epoch: 0
373373
run_id: "#1"
374-
extra_args: ""
374+
extra_args: "--aggregate-signature-type=Concatenation"
375375
# Include a test for the era switch with regenesis
376376
- mode: "std"
377377
era: ${{ fromJSON(needs.build-ubuntu.outputs.eras)[0] }}
378378
next_era: ${{ fromJSON(needs.build-ubuntu.outputs.eras)[1] }}
379379
cardano_node_version: "10.4.1"
380380
hard_fork_latest_era_at_epoch: 0
381381
run_id: "#1"
382-
extra_args: "--mithril-era-regenesis-on-switch"
382+
extra_args: "--mithril-era-regenesis-on-switch --aggregate-signature-type=Concatenation"
383383
steps:
384384
- name: Checkout sources
385385
uses: actions/checkout@v4

0 commit comments

Comments
 (0)