summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2021-04-25 07:38:27 (GMT)
committerfvogel <fvogelnew1@free.fr>2021-04-25 07:38:27 (GMT)
commit29e42e600f888b24c58e3cf4d259aa9e228ba2e6 (patch)
tree4ec000c8b66e381fb9cccd93c2a44f56fe684844 /.github
parent8c01d5fea4cbdd448a644bfaf18e9dfc96843b61 (diff)
downloadtk-29e42e600f888b24c58e3cf4d259aa9e228ba2e6.zip
tk-29e42e600f888b24c58e3cf4d259aa9e228ba2e6.tar.gz
tk-29e42e600f888b24c58e3cf4d259aa9e228ba2e6.tar.bz2
Try -nolisten unix when launching xvfb in the hope the tests will run on macOS with clang.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mac-build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml
index 41da00c..1d1719c 100644
--- a/.github/workflows/mac-build.yml
+++ b/.github/workflows/mac-build.yml
@@ -116,7 +116,7 @@ jobs:
if [ $USE_XVFB == true ]; then
function runXvfb {
PATH=$PATH:/opt/X11/bin
- Xvfb $1 &
+ Xvfb $1 -nolisten unix &
XVFB_PID=$!
echo Launched Xvfb $1 as process $XVFB_PID >&2
trap "echo killing process $XVFB_PID... >&2; kill $XVFB_PID" 0