From 694a60a14747a9f8d254b8670a28b6ca99631256 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Wed, 9 Oct 2024 17:28:32 +0100 Subject: [PATCH] ci: re-run the test verbosely when on failure This will provide us the test log, without having to fiddle with upload actions. Which is particularly funky since: - v4 requires distinct names - symbols like : (as in our container name) are not supported Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/179 Signed-off-by: Lucas De Marchi --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f237715..276e5eb4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -91,7 +91,7 @@ jobs: - name: test (meson) if: ${{ matrix.build == 'meson' }} - run: cd build && meson test + run: cd build && meson test || meson test --verbose - name: test (autotools) if: ${{ matrix.build == 'autotools' }} @@ -123,4 +123,4 @@ jobs: - name: test (32bit) (meson) if: ${{ matrix.build == 'meson' && matrix.container.multilib == 'true' }} - run: cd build32 && meson test + run: cd build32 && meson test || meson test --verbose -- 2.47.3