From: Emil Velikov Date: Wed, 9 Oct 2024 16:28:32 +0000 (+0100) Subject: ci: re-run the test verbosely when on failure X-Git-Tag: v34~233 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=694a60a14747a9f8d254b8670a28b6ca99631256;p=thirdparty%2Fkmod.git 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 --- 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