Skip to content

Commit e5c085f

Browse files
Print errors on failed smoke test runs
1 parent b205737 commit e5c085f

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/smoke-test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,10 @@ jobs:
134134
run: |
135135
FLAGS="${ENTRY_CFLAGS:-$MAKE_CFLAGS}"
136136
make check CFLAGS="$FLAGS" LDFLAGS="$ENTRY_LDFLAGS"
137+
138+
- name: Print errors
139+
if: ${{ failure() }}
140+
run: |
141+
if [ -f test-suite.log ] ; then
142+
cat test-suite.log
143+
fi

0 commit comments

Comments
 (0)