Skip to content

Commit

Permalink
Add log output to fsanitize
Browse files Browse the repository at this point in the history
  • Loading branch information
embhorn committed Oct 25, 2023
1 parent 877e99d commit 114daee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
id: make-check
run: make check
- name: Show logs on failure
#if: ${{ failure() && steps.make-check.outcome == 'failure' }}
if: ${{ failure() && steps.make-check.outcome == 'failure' }}
run: |
more test-suite.log
Expand All @@ -78,7 +78,7 @@ jobs:
id: make-check-sn
run: make check
- name: Show logs on failure
#if: ${{ failure() && steps.make-check-sn.outcome == 'failure' }}
if: ${{ failure() && steps.make-check-sn.outcome == 'failure' }}
run: |
more test-suite.log
Expand All @@ -90,7 +90,7 @@ jobs:
id: make-check-nonblock
run: make check
- name: Show logs on failure
#if: ${{ failure() && steps.make-check-nonblock.outcome == 'failure' }}
if: ${{ failure() && steps.make-check-nonblock.outcome == 'failure' }}
run: |
more test-suite.log
Expand All @@ -102,6 +102,6 @@ jobs:
id: make-check-nonblock-mt
run: make check
- name: Show logs on failure
#if: ${{ failure() && steps.make-check-nonblock-mt.outcome == 'failure' }}
if: ${{ failure() && steps.make-check-nonblock-mt.outcome == 'failure' }}
run: |
more test-suite.log

0 comments on commit 114daee

Please sign in to comment.