summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2022-07-15 13:07:26 +1000
committerRan Benita <ran@unusedvar.com>2022-09-24 10:09:11 +0300
commitcc0e97e911b7bf98bd7ee6e908c4d8727b5845fd (patch)
treeee97c5d1eee9690b06391819d6fd90418543f219
parent320f56d2a4a31026e5c8d3b60303af98bf885e1b (diff)
downloadxorg-lib-libxkbcommon-cc0e97e911b7bf98bd7ee6e908c4d8727b5845fd.tar.gz
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.yml3
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