diff options
author | fvogel <fvogelnew1@free.fr> | 2021-04-27 19:27:32 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2021-04-27 19:27:32 (GMT) |
commit | e088c728ae4887ac6fbc9e4f6f5dc41d7b57ad40 (patch) | |
tree | 3d6169c5f6247499cd275c203ace6cd1c9596fe9 /.github | |
parent | 357aa1687997c0bb77b4bfe8d10881bcff714b4f (diff) | |
download | tk-e088c728ae4887ac6fbc9e4f6f5dc41d7b57ad40.zip tk-e088c728ae4887ac6fbc9e4f6f5dc41d7b57ad40.tar.gz tk-e088c728ae4887ac6fbc9e4f6f5dc41d7b57ad40.tar.bz2 |
Another try
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac-build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 56886e0..33c97a9 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -115,6 +115,8 @@ jobs: run: | if [ $USE_XVFB == true ]; then function runXvfb { + rm /tmp/.X11-unix/X1 + rm /tmp/.X1 PATH=$PATH:/opt/X11/bin Xvfb $1 -nolisten unix & XVFB_PID=$! @@ -128,7 +130,7 @@ jobs: : do nothing } fi - ( runXvfb :1664; make test-classic test-ttk; exit $? ) | tee out.txt || { + ( runXvfb :1; make test-classic test-ttk; exit $? ) | tee out.txt || { echo "::error::Failure during Test" exit 1 } |