From 7bc39ba750f64879c3d08d85a213786c5430825c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 30 Oct 2019 19:15:26 +0100 Subject: [PATCH] ci: Run tests through dbus-run-session Something changed recently in the test initialization code, causing the test-theme invocation to fail. Make sure there is a D-Bus session by running the tests through dbus-run-session to get them going again. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/796 --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b5c9d656..6e5862444 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -69,10 +69,11 @@ test: stage: test variables: XDG_RUNTIME_DIR: "$CI_PROJECT_DIR/runtime-dir" + NO_AT_BRIDGE: "1" before_script: - ninja -C mutter/build install script: - - xvfb-run meson test -C build --no-rebuild + - dbus-run-session -- xvfb-run meson test -C build --no-rebuild <<: *only_default artifacts: expire_in: 1 day