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
7 changes: 6 additions & 1 deletion .github/workflows/staking-attestation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ on:
required: false
type: string
default: ""
ipfs_hash:
description: "Optional pre-built IPFS hash; when set, the test job prefers it over the freshly built hash"
required: false
type: string
default: ""
secrets:
TROPI_APP_PRIVATE_KEY:
required: true
Expand Down Expand Up @@ -88,7 +93,7 @@ jobs:
docker run --rm --pull=always --network dncore_network \
-v /var/run/docker.sock:/var/run/docker.sock \
-e MODE=attestation \
-e IPFS_HASH=${{ needs.build.outputs.ipfs_hash }} \
-e IPFS_HASH=${{ inputs.ipfs_hash || needs.build.outputs.ipfs_hash }} \
-e EXECUTION_CLIENT=${{ inputs.execution_client }} \
-e CONSENSUS_CLIENT=${{ inputs.consensus_client }} \
-e GITHUB_TOKEN=${{ steps.app-token.outputs.token }} \
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/staking-sync-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ on:
required: false
type: string
default: ""
ipfs_hash:
description: "Optional pre-built IPFS hash; when set, the test job prefers it over the freshly built hash"
required: false
type: string
default: ""
secrets:
TROPI_APP_PRIVATE_KEY:
required: true
Expand Down Expand Up @@ -88,7 +93,7 @@ jobs:
docker run --rm --pull=always --network dncore_network \
-v /var/run/docker.sock:/var/run/docker.sock \
-e MODE=sync \
-e IPFS_HASH=${{ needs.build.outputs.ipfs_hash }} \
-e IPFS_HASH=${{ inputs.ipfs_hash || needs.build.outputs.ipfs_hash }} \
-e EXECUTION_CLIENT=${{ inputs.execution_client }} \
-e CONSENSUS_CLIENT=${{ inputs.consensus_client }} \
-e GITHUB_TOKEN=${{ steps.app-token.outputs.token }} \
Expand Down