Skip to content

Commit

Permalink
tmp debug commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dlachaume committed Feb 22, 2024
1 parent 1620c99 commit ba0f92d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,14 @@ jobs:
shell: bash
working-directory: ./bin
run: ./mithril-client ${{ steps.prepare.outputs.debug_level }} mithril-stake-distribution download $MITHRIL_STAKE_DISTRIBUTION_HASH

- name: Debug - echo ctx_enabled
run: |
echo "'ctx_enabled_unix:' ${{ steps.aggregator_capability_unix.outputs.ctx_enabled }}"
echo "'ctx_enabled_windows:' ${{ steps.aggregator_capability_windows.outputs.ctx_enabled }}"
- name: Cardano transaction certify
if: ${{ steps.aggregator_capability_unix.outputs.ctx_enabled }} == 'true' || ${{ steps.aggregator_capability_windows.outputs.ctx_enabled }} == 'true'
if: steps.aggregator_capability_unix.outputs.ctx_enabled == 'true' || steps.aggregator_capability_windows.outputs.ctx_enabled == 'true'
shell: bash
working-directory: ./bin
run: ./mithril-client --unstable ${{ steps.prepare.outputs.debug_level }} cardano-transaction certify $TRANSACTIONS_HASHES_TO_CERTIFY
Expand Down Expand Up @@ -196,8 +201,11 @@ jobs:
shell: bash
run: ${{ steps.command.outputs.mithril_client }} ${{ steps.prepare.outputs.debug_level }} mithril-stake-distribution download $MITHRIL_STAKE_DISTRIBUTION_HASH --download-dir /app

- name: Debug - echo ctx_enabled
run: echo "'ctx_enabled:' ${{ steps.aggregator_capability.outputs.ctx_enabled }}"

- name: Cardano transaction certify
if: ${{ steps.aggregator_capability.outputs.ctx_enabled }} == 'true'
if: $steps.aggregator_capability.outputs.ctx_enabled == 'true'
shell: bash
run: ${{ steps.command.outputs.mithril_client }} --unstable ${{ steps.prepare.outputs.debug_level }} cardano-transaction certify $TRANSACTIONS_HASHES_TO_CERTIFY

Expand Down

0 comments on commit ba0f92d

Please sign in to comment.