Although unit tests are executed as part of distcheck, but add it as a
dedicated step to make it explicit with getting the logs afterwards.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski(a)canonical.com>
---
.github/workflows/ci.yml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c8e3fb8fb10b..e8f507a128e0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -256,6 +256,17 @@ jobs:
- name: Compile
run: make -j$(nproc)
+ - name: Run unit tests
+ id: unit_tests
+ run: |
+ make check
+ if: ${{ (matrix.env['ARCH'] == 'x86-64') ||
(matrix.env['ARCH'] == 'i386') }}
+
+ - name: Get unit tests logs
+ run: cat test-suite.log
+ if: ${{ always() && ((steps.unit_tests.outcome == 'failure') ||
+ (steps.unit_tests.outcome == 'success')) }}
+
- name: Check final binary
run: |
file src/neard
--
2.30.2