This website requires JavaScript.
Explore
Help
Register
Sign In
brl
/
mutter
Watch
1
Star
0
Fork
0
You've already forked mutter
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
2f825f3a86
mutter
/
.gitlab-ci
/
run-meson.sh
9 lines
59 B
Bash
Raw
Normal View
History
Unescape
Escape
ci: Make run-tests.sh usable for the dist job too We can't just run a single 'meson' command in the script as we need to launch multiple long running processes inside the D-Bus session: * The meson test invokation itself * wireplumber This was handled for the 'test' stages, but not for the 'dist' stage, which as a result would fail due to wireplumber not being launched causing any test using pipewire to timeout. Address this by making run-tests.sh a more generic run-meson.sh that launches wireplumber before running the actual meson command. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2204>
2022-01-04 05:54:33 -05:00
#!/usr/bin/bash
set
-e
wireplumber
&
sleep
1
ci: Enable 'catch' backtrace generation catch needs to be able to use ptrace(); asan builders allow this, so tag the test steps with asan and asan-aarch64 to make them run on capable runners. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2561>
2022-08-19 09:39:41 -04:00
meson
"
$@
"
Reference in New Issue
Copy Permalink