Skip to content

Commit

Permalink
more debug on reruns
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Dec 6, 2024
1 parent 96b51ac commit e97da83
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,12 @@ jobs:
- name: Define env
id: env
run: |
export DEBUG=zombie
if [[ ${{ github.run_attempt }} -gt 1 ]]; then
# more debug in rerun
export DEBUG=zombie*
else
export DEBUG=zombie*
fi;
echo "DEBUG=${DEBUG}" >> $GITHUB_OUTPUT
echo "set DEBUG=${DEBUG}"
export ZOMBIENET_INTEGRATION_TEST_IMAGE="docker.io/paritypr/polkadot-debug:master"
Expand Down

0 comments on commit e97da83

Please sign in to comment.