diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2022-07-15 13:01:52 +1000 |
---|---|---|
committer | Ran Benita <ran@unusedvar.com> | 2022-09-24 10:09:11 +0300 |
commit | b309514247996d55f6ef33e530a722e2431c2fdb (patch) | |
tree | a8ac325d497caf72555dacb63edaa630304a6c98 | |
parent | cc0e97e911b7bf98bd7ee6e908c4d8727b5845fd (diff) | |
download | libxkbcommon-b309514247996d55f6ef33e530a722e2431c2fdb.tar.gz libxkbcommon-b309514247996d55f6ef33e530a722e2431c2fdb.tar.bz2 libxkbcommon-b309514247996d55f6ef33e530a722e2431c2fdb.zip |
ci/linux: store the test logs as artifacts on failure
This makes debugging a lot easier than having to reproduce locally.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | .github/workflows/linux.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d5f1d2e..6e6b650 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -41,3 +41,10 @@ jobs: - name: Test with valgrind run: meson test -C build --print-errorlogs --setup=valgrind --no-suite python-tests + - name: Upload test logs + uses: actions/upload-artifact@v3 + if: failure() + with: + name: test logs + path: | + build/meson-logs/ |