From: Peter Hutterer Date: Fri, 15 Jul 2022 03:07:26 +0000 (+1000) Subject: ci/linux: split normal testing from valgrind testing X-Git-Tag: upstream/1.5.0~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc0e97e911b7bf98bd7ee6e908c4d8727b5845fd;p=platform%2Fupstream%2Flibxkbcommon.git ci/linux: split normal testing from valgrind testing A test case failure usually also triggers valgrind leaks, sifting through those to find the actual test failure is painful. So let's separate the tests and run them separately. Signed-off-by: Peter Hutterer --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5dede6d..d5f1d2e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -37,4 +37,7 @@ jobs: meson compile -C build - name: Test run: + meson test -C build --print-errorlogs --no-suite python-tests + - name: Test with valgrind + run: meson test -C build --print-errorlogs --setup=valgrind --no-suite python-tests