diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2022-07-15 13:07:26 +1000 |
---|---|---|
committer | Ran Benita <ran@unusedvar.com> | 2022-09-24 10:09:11 +0300 |
commit | cc0e97e911b7bf98bd7ee6e908c4d8727b5845fd (patch) | |
tree | ee97c5d1eee9690b06391819d6fd90418543f219 | |
parent | 320f56d2a4a31026e5c8d3b60303af98bf885e1b (diff) | |
download | libxkbcommon-cc0e97e911b7bf98bd7ee6e908c4d8727b5845fd.tar.gz libxkbcommon-cc0e97e911b7bf98bd7ee6e908c4d8727b5845fd.tar.bz2 libxkbcommon-cc0e97e911b7bf98bd7ee6e908c4d8727b5845fd.zip |
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 <peter.hutterer@who-t.net>
-rw-r--r-- | .github/workflows/linux.yml | 3 |
1 files changed, 3 insertions, 0 deletions
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 |