2018-02-13 16:21:18 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2018-03-01 10:08:27 +00:00
|
|
|
srcdir=$(pwd)
|
|
|
|
|
2018-04-11 10:18:55 +00:00
|
|
|
mkdir -p _ccache
|
|
|
|
export CCACHE_BASEDIR="$(pwd)"
|
|
|
|
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
|
|
|
|
|
|
|
|
ccache --zero-stats
|
|
|
|
ccache --show-stats
|
|
|
|
export CCACHE_DISABLE=true
|
2018-03-01 10:08:27 +00:00
|
|
|
meson \
|
|
|
|
-Dx11-backend=true \
|
|
|
|
-Dwayland-backend=true \
|
|
|
|
-Dbroadway-backend=true \
|
|
|
|
-Dvulkan=yes \
|
|
|
|
_build $srcdir
|
2018-04-11 10:18:55 +00:00
|
|
|
unset CCACHE_DISABLE
|
2018-03-01 10:08:27 +00:00
|
|
|
|
|
|
|
cd _build
|
|
|
|
|
2018-02-13 16:21:18 +00:00
|
|
|
ninja
|
2018-04-11 10:18:55 +00:00
|
|
|
ccache --show-stats
|
2018-02-17 10:55:40 +00:00
|
|
|
|
|
|
|
xvfb-run -a -s "-screen 0 1024x768x24" \
|
|
|
|
meson test \
|
|
|
|
--print-errorlogs \
|
|
|
|
--suite=gtk+ \
|
2018-04-13 17:47:07 +00:00
|
|
|
--no-suite=gtk+:gsk
|