ci: switch to seatd-launch

This removes the need for the ad-hoc loop.

Because udev creates the symlinks in /dev/dri/by-path/, we need to
wait for it to consume all pending events before the chmod call.
Previously the delay needed for seatd to come up was enough to let
udev create the symlinks in time (by chance).
This commit is contained in:
Simon Ser 2021-09-13 11:39:51 +02:00 committed by Kenny Levinsen
parent 52da68b591
commit 6cb25ebad7
1 changed files with 2 additions and 3 deletions

View File

@ -34,10 +34,9 @@ tasks:
- smoke-test: | - smoke-test: |
cd wlroots/tinywl cd wlroots/tinywl
sudo modprobe vkms sudo modprobe vkms
sudo seatd -u "$USER" & udevadm settle
while ! [ -e /run/seatd.sock ]; do sleep 0.1; done
export WLR_BACKENDS=drm export WLR_BACKENDS=drm
export WLR_RENDERER=pixman export WLR_RENDERER=pixman
export WLR_DRM_DEVICES=/dev/dri/by-path/platform-vkms-card export WLR_DRM_DEVICES=/dev/dri/by-path/platform-vkms-card
sudo chmod ugo+rw /dev/dri/by-path/platform-vkms-card sudo chmod ugo+rw /dev/dri/by-path/platform-vkms-card
./tinywl -s 'kill $PPID' || [ $? = 143 ] sudo -E seatd-launch -- ./tinywl -s 'kill $PPID' || [ $? = 143 ]