From ba0f92d600cf8831c8153d36b2170ad8dd463745 Mon Sep 17 00:00:00 2001 From: Damien LACHAUME / PALO-IT Date: Thu, 22 Feb 2024 14:57:34 +0100 Subject: [PATCH] tmp debug commit --- .github/workflows/test-client.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-client.yml b/.github/workflows/test-client.yml index fed670006d7..2320f0b4d76 100644 --- a/.github/workflows/test-client.yml +++ b/.github/workflows/test-client.yml @@ -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 @@ -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