diff options
author | fvogel <fvogelnew1@free.fr> | 2021-05-02 07:27:52 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2021-05-02 07:27:52 (GMT) |
commit | 8e7a0fd4f352989f0e95d6d6e1af0b07838503ff (patch) | |
tree | c976a53637aaf33a7ecef67807bc9149718d9472 /.github | |
parent | d2f910a42cee5faecab99ea6c6dac0a59d5058fe (diff) | |
download | tk-8e7a0fd4f352989f0e95d6d6e1af0b07838503ff.zip tk-8e7a0fd4f352989f0e95d6d6e1af0b07838503ff.tar.gz tk-8e7a0fd4f352989f0e95d6d6e1af0b07838503ff.tar.bz2 |
... and in the process remove previous failing tries.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac-build.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 6d3c3ab..d57a62f 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -117,14 +117,12 @@ jobs: if [ $USE_XVFB == true ]; then function runXvfb { PATH=$PATH:/opt/X11/bin - Xvfb $1 -nolisten unix & + Xvfb $1 & XVFB_PID=$! echo Launched Xvfb $1 as process $XVFB_PID >&2 trap "echo killing process $XVFB_PID... >&2; kill $XVFB_PID" 0 export DISPLAY=$1 sleep 2 - ls -lsa /tmp/.X* - cat /var/log/Xorg.0.log } else function runXvfb { |