mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-30 10:51:39 +02:00
13 lines
137 B
Bash
Executable File
13 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
|
|
Xvfb :4242 &
|
|
PID=$!
|
|
export DISPLAY=:4242
|
|
if ninja -C build meson-test; then
|
|
kill $PID
|
|
return 0
|
|
else
|
|
kill $PID
|
|
return 1
|
|
fi
|