ci/build-tumbleweed: attempt to enable unit tests in CI

This commit is contained in:
Jan Ekström 2022-06-12 23:50:37 +03:00
parent 8f274da066
commit 312a555053
1 changed files with 4 additions and 2 deletions

View File

@ -10,9 +10,10 @@ if [ "$1" = "meson" ]; then
-Dlibmpv=true \
-Dmanpage-build=enabled \
-Dshaderc=enabled \
-Dtests=true \
-Dvulkan=enabled
meson compile -C build --verbose
./build/mpv
./build/mpv --no-config -v --unittest=all-simple
fi
if [ "$1" = "waf" ]; then
@ -24,7 +25,8 @@ if [ "$1" = "waf" ]; then
--enable-libmpv-shared \
--enable-manpage-build \
--enable-shaderc \
--enable-tests \
--enable-vulkan
python3 ./waf build --verbose
./build/mpv
./build/mpv -v --no-config -v --unittest=all-simple
fi