[linux-nfc] [neard][PATCH 05/34] ci: run unit tests
Krzysztof Kozlowski <[email protected]>
| Newsgroups | org.01.lists.linux-nfc,dev.linux.lists.oe-linux-nfc |
|---|---|
| Message-ID | <[email protected]> |
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 <[email protected]> --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8160aada2042..7daccd2672fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -245,6 +245,23 @@ 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: | + for i in unit/*log + do + echo "#######################" + echo "LOG: $i" + cat $i + done + if: ${{ always() && ((steps.unit_tests.outcome == 'failure') || + (steps.unit_tests.outcome == 'success')) }} + - name: Check final binary run: | file src/neard -- 2.27.0 _______________________________________________ Linux-nfc mailing list -- [email protected] To unsubscribe send an email to [email protected] %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s