Skip to content

Commit

Permalink
Don't suppress failure on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouzo committed Jan 30, 2023
1 parent 8038374 commit 59558a1
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/fullsync-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,19 +134,16 @@ jobs:
run: ./sync_then_diff.sh

- name: Diff log
run: |
echo "diff debug-${{matrix.blocks.stop}}.log debug-tmp-${{matrix.blocks.stop}}.log"
diff debug-${{matrix.blocks.stop}}.log debug-tmp-${{matrix.blocks.stop}}.log
continue-on-error: true
run: diff debug-${{matrix.blocks.stop}}.log debug-tmp-${{matrix.blocks.stop}}.log

- name: Diff rollback log
run: |
echo "diff debug-pre-rollback.log debug-post-rollback.log"
diff debug-pre-rollback.log debug-post-rollback.log
continue-on-error: true
run: diff debug-pre-rollback.log debug-post-rollback.log
if: ${{ failure() || success() }}

- name: Show debug.log
run: cat $DATADIR/debug.log
if: ${{ failure() || success() }}

- name: Show log file
run: cat debug-tmp-$STOP_BLOCK.log
if: ${{ failure() || success() }}

0 comments on commit 59558a1

Please sign in to comment.