mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 09:30:45 -05:00
21 lines
464 B
Bash
21 lines
464 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
set +e
|
||
|
|
||
|
mkdir -m 700 $XDG_RUNTIME_DIR
|
||
|
glib-compile-schemas $GSETTINGS_SCHEMA_DIR
|
||
|
|
||
|
dbus-run-session -- \
|
||
|
xvfb-run -s '+iglx -noreset' \
|
||
|
meson test -C build --no-rebuild -t 10 --wrap catchsegv
|
||
|
|
||
|
exit_code=$?
|
||
|
|
||
|
python3 .gitlab-ci/meson-junit-report.py \
|
||
|
--project-name=mutter \
|
||
|
--job-id "${CI_JOB_NAME}" \
|
||
|
--output "build/${CI_JOB_NAME}-report.xml" \
|
||
|
build/meson-logs/testlog-catchsegv.json
|
||
|
|
||
|
exit $exit_code
|