2019-04-08 08:34:13 -04:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
2021-02-13 12:47:54 -05:00
|
|
|
set -e
|
2019-04-08 08:34:13 -04:00
|
|
|
|
|
|
|
dconf update
|
|
|
|
glib-compile-schemas $GSETTINGS_SCHEMA_DIR
|
|
|
|
|
2021-03-16 12:46:44 -04:00
|
|
|
# Disable e.g. audio support to not dead lock screen cast tests
|
|
|
|
rm -f /usr/share/pipewire/media-session.d/with-*
|
|
|
|
|
|
|
|
PIPEWIRE_DEBUG=2 PIPEWIRE_LOG="$CI_PROJECT_DIR/build/meson-logs/pipewire.log" \
|
|
|
|
pipewire &
|
2021-02-13 12:49:58 -05:00
|
|
|
|
|
|
|
sleep 2
|
|
|
|
|
2021-08-27 07:02:42 -04:00
|
|
|
meson test -C build --no-rebuild --setup CI
|
2019-04-08 08:34:13 -04:00
|
|
|
|
|
|
|
exit_code=$?
|
|
|
|
|
|
|
|
exit $exit_code
|