Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions .github/workflows/regression-dbsync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,20 @@ on:
inputs:
node_rev:
description: "cardano-node revision"
default: "master"
default: master
cli_rev:
description: "cardano-cli revision (optional)"
default: ""
dbsync_rev:
description: "db-sync revision"
default: "master"
default: master
cluster_era:
type: choice
description: "Cluster era"
options:
- conway 9
- conway 10
default: conway 9
tx_era:
type: choice
description: "Tx era"
options:
- default
- conway
- babbage
default: default
- conway 9
default: conway 10
markexpr:
type: choice
description: "Selection of tests"
Expand Down Expand Up @@ -68,9 +63,9 @@ jobs:
uses: ./.github/workflows/regression_reusable.yaml
with:
node_rev: ${{ inputs.node_rev }}
cli_rev: ${{ inputs.cli_rev }}
dbsync_rev: ${{ inputs.dbsync_rev }}
cluster_era: ${{ inputs.cluster_era }}
tx_era: ${{ inputs.tx_era }}
markexpr: ${{ inputs.markexpr }}
topology: ${{ inputs.topology }}
byron_cluster: ${{ inputs.byron_cluster }}
Expand Down
17 changes: 6 additions & 11 deletions .github/workflows/regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,16 @@ on:
node_rev:
description: "cardano-node revision"
default: master
cli_rev:
description: "cardano-cli revision (optional)"
default: ""
cluster_era:
type: choice
description: "Cluster era"
options:
- conway 9
- conway 10
default: conway 9
tx_era:
type: choice
description: "Tx era"
options:
- default
- conway
- babbage
default: default
- conway 9
default: conway 10
markexpr:
type: choice
description: "Selection of tests"
Expand Down Expand Up @@ -61,8 +56,8 @@ jobs:
uses: ./.github/workflows/regression_reusable.yaml
with:
node_rev: ${{ inputs.node_rev }}
cli_rev: ${{ inputs.cli_rev }}
cluster_era: ${{ inputs.cluster_era }}
tx_era: ${{ inputs.tx_era }}
markexpr: ${{ inputs.markexpr }}
topology: ${{ inputs.topology }}
byron_cluster: ${{ inputs.byron_cluster }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/regression_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
required: false
type: string
default: ""
cli_rev:
required: false
type: string
default: ""
dbsync_rev:
required: false
type: string
Expand Down Expand Up @@ -83,6 +87,7 @@ jobs:
: > .github_ci_env
echo "PY_COLORS=1" >> .github_ci_env
echo "NODE_REV=${{ inputs.node_rev }}" >> .github_ci_env
echo "CLI_REV=${{ inputs.cli_rev }}" >> .github_ci_env
echo "DBSYNC_REV=${{ inputs.dbsync_rev }}" >> .github_ci_env
echo "CLUSTER_ERA=${{ inputs.cluster_era }}" >> .github_ci_env
echo "TX_ERA=${{ inputs.tx_era }}" >> .github_ci_env
Expand Down
Loading