summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2018-11-14 16:59:34 +0100
committerJonas Ådahl <jadahl@gmail.com>2018-11-22 17:48:00 +0100
commit70741a051bcf0528c1802eab3e3a0b914dba9c56 (patch)
tree72b1a23583dd445c5b10d7e143aa52b8621c2226 /.gitlab-ci.yml
parentad7d6e4a37a6258a5de876a85859f7f57415dffa (diff)
downloadmutter-70741a051bcf0528c1802eab3e3a0b914dba9c56.tar.gz
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.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files 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