Skip to content

Commit

Permalink
refactor: reduce hard fork test in CI to '8.9' version
Browse files Browse the repository at this point in the history
  • Loading branch information
jpraynaud committed Jun 28, 2024
1 parent 8df606d commit 4a0e524
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ jobs:
matrix:
mode: [ "std" ]
era: ${{ fromJSON(needs.build-ubuntu-X64.outputs.eras) }}
cardano_node_version: [ "8.9.0", "8.12.1", "8.12.0-pre" ]
hard_fork_latest_era_at_epoch: [ 0,10,100 ]
cardano_node_version: [ "8.9.4", "8.12.1", "8.12.0-pre" ]
hard_fork_latest_era_at_epoch: [ 0 ]
run_id: [ "#1" ]
extra_args: [ "" ]

Expand All @@ -297,10 +297,24 @@ jobs:
# Include a test for the P2P mode
- mode: "p2p"
era: ${{ fromJSON(needs.build-ubuntu-X64.outputs.eras)[0] }}
cardano_node_version: "8.9.0"
cardano_node_version: "8.9.4"
hard_fork_latest_era_at_epoch: 100
run_id: "#1"
extra_args: "--use-p2p-network"
# Include tests for hard fork transitions
- mode: "std"
era: ${{ fromJSON(needs.build-ubuntu-X64.outputs.eras)[0] }}
cardano_node_version: "8.9.4"
hard_fork_latest_era_at_epoch: 10
run_id: "#1"
extra_args: ""
# Include tests for hard fork transitions
- mode: "std"
era: ${{ fromJSON(needs.build-ubuntu-X64.outputs.eras)[0] }}
cardano_node_version: "8.9.4"
hard_fork_latest_era_at_epoch: 100
run_id: "#1"
extra_args: ""
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down

0 comments on commit 4a0e524

Please sign in to comment.