diff options
author | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2019-01-23 13:55:40 +0100 |
---|---|---|
committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2019-01-30 18:57:56 +0100 |
commit | a54f9e835cd42e196a6eb64bfff41ef7fa44a915 (patch) | |
tree | 4fdc3ce4922a61b54e30cbc75627228fd69e28f1 /.gitlab-ci.yml | |
parent | 7a941138deb4aee814a1a08bb5635562ba604a49 (diff) | |
download | mutter-a54f9e835cd42e196a6eb64bfff41ef7fa44a915.tar.gz |
gitlab-ci: Use runtime dir owned only by current user
https://gitlab.gnome.org/GNOME/mutter/merge_requests/408
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af3d879fb..249c38400 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,8 +24,9 @@ test-mutter: - build script: - glib-compile-schemas $PWD/build/data + - mkdir -m 700 $PWD/runtime-dir - > - env XDG_RUNTIME_DIR=/tmp + env XDG_RUNTIME_DIR=$PWD/runtime-dir GSETTINGS_SCHEMA_DIR=$PWD/build/data dbus-run-session -- xvfb-run -s '+iglx -noreset' meson test -C build --no-rebuild -t 10 --verbose --no-stdsplit --wrap catchsegv |