summaryrefslogtreecommitdiff
path: root/.github/workflows/builds.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/builds.sh')
-rwxr-xr-x.github/workflows/builds.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/builds.sh b/.github/workflows/builds.sh
index 992281a..afaee34 100755
--- a/.github/workflows/builds.sh
+++ b/.github/workflows/builds.sh
@@ -27,9 +27,7 @@ if [ -f meson.build ]; then
infoend
infobegin "Test (meson)"
- ninja -C _build test || {
- true
- }
+ xvfb-run ninja -C _build test
infoend
infobegin "Dist (meson)"
@@ -37,7 +35,7 @@ if [ -f meson.build ]; then
# https://github.com/git/git/commit/8959555cee7ec045958f9b6dd62e541affb7e7d9
# https://git-scm.com/docs/git-config/2.35.2#Documentation/git-config.txt-safedirectory
git config --global --add safe.directory ${PWD}
- meson dist -C _build --no-tests
+ xvfb-run meson dist -C _build
infoend
fi