Skip to content

Commit

Permalink
add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Sep 12, 2024
1 parent 71a6066 commit ae2402a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/actions/get_test_infos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ runs:
TEST_INFOS=$(./.github/actions/get_test_infos/get_test_infos.sh | base64 -d)
echo "test-infos=${TEST_INFOS}" >> "$GITHUB_OUTPUT"
shell: bash

- name: Trouble shoot
id: trouble
run: echo ${{ steps.get-test-infos.outputs.tests }}
shell: bash
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ jobs:
./tests/property/candid_rpc/functional_api/stable_b_tree_map
') || '' }}
trouble-shoot:
needs: get-test-infos
runs-on: ubuntu-latest
steps:
- name: Troubleshoot
id: trouble-shoot
run: echo ${{needs.get-test-infos.outputs.test-infos}}

run-test:
name: '${{matrix.tests.name}} | ${{matrix.tests.type}} | ${{matrix.tests.syntax}} | ${{matrix.tests.api}} | ${{matrix.azle-source}}'
needs:
Expand Down

0 comments on commit ae2402a

Please sign in to comment.