From 70741a051bcf0528c1802eab3e3a0b914dba9c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Wed, 14 Nov 2018 16:59:34 +0100 Subject: [PATCH] gitlab-ci.yml: Wrap tests with catchsegv To be able to see why tests failed, if they crashed due to a SIGSEGV, wrap the execution with catchsegv. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 32a1797a1..8af342278 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,8 +17,8 @@ test-mutter: - meson . build -Degl_device=true -Dwayland_eglstream=true - ninja -C build - glib-compile-schemas $PWD/build/data - - env XDG_RUNTIME_DIR=/tmp/ GSETTINGS_SCHEMA_DIR=$PWD/build/data dbus-run-session -- xvfb-run -s '+iglx -noreset' meson test -C build --verbose --no-stdsplit + - env XDG_RUNTIME_DIR=/tmp/ GSETTINGS_SCHEMA_DIR=$PWD/build/data dbus-run-session -- xvfb-run -s '+iglx -noreset' meson test -C build --verbose --no-stdsplit --wrap catchsegv artifacts: paths: - - build/meson-logs + - build/ when: on_failure