From ebeba052b5a4f2bc104cdfa510aef7fe77fe9a08 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 28 Aug 2025 23:23:50 +0200 Subject: [PATCH] .github: fix MacOS build MacOS build suddenly missing xvfb-run, which did work up until few hours ago. Therefore, make a quick workaround, until the situation is clearly resolved. The only impact is that some XTS tests (which are ignored on MacOS anyways) might not work properly. Signed-off-by: Enrico Weigelt, metux IT consult --- .github/scripts/util.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/scripts/util.sh b/.github/scripts/util.sh index f4c3fe871b..204a85fccc 100644 --- a/.github/scripts/util.sh +++ b/.github/scripts/util.sh @@ -85,7 +85,11 @@ build_ac_xts() { cd $pkgname CFLAGS='-fcommon' ./autogen.sh --prefix=$X11_PREFIX CFLAGS="$CFLAGS" - xvfb-run make -j${FDO_CI_CONCURRENT:-4} install tetexec.cfg + if [ "$X11_OS" = "Darwin" ]; then + make -j${FDO_CI_CONCURRENT:-4} install tetexec.cfg + else + xvfb-run make -j${FDO_CI_CONCURRENT:-4} install tetexec.cfg + fi ) touch $X11_PREFIX/$pkgname.DONE echo "::endgroup::"