You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
301 B
21 lines
301 B
7 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Start Xvfb
|
||
|
XVFB_WHD=${XVFB_WHD:-1280x720x16}
|
||
|
|
||
|
Xvfb :99 -ac -screen 0 $XVFB_WHD -nolisten tcp &
|
||
|
xvfb=$!
|
||
|
|
||
|
export DISPLAY=:99
|
||
|
|
||
|
mkdir _build
|
||
|
|
||
|
meson --prefix /usr "$@" _build . || exit $?
|
||
|
ninja -C _build || exit $?
|
||
|
meson test -C _build || exit $?
|
||
|
|
||
|
rm -rf _build
|
||
|
|
||
|
# Stop Xvfb
|
||
|
kill -9 ${xvfb}
|