diff options
author | fvogel <fvogelnew1@free.fr> | 2021-05-03 07:33:20 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2021-05-03 07:33:20 (GMT) |
commit | 7a8e5189e8938734110451af492ef9e76380acf2 (patch) | |
tree | 38796a80f2a9ec50b88ff82ff70a61a03abd3ca2 /.github | |
parent | 8e7a0fd4f352989f0e95d6d6e1af0b07838503ff (diff) | |
download | tk-7a8e5189e8938734110451af492ef9e76380acf2.zip tk-7a8e5189e8938734110451af492ef9e76380acf2.tar.gz tk-7a8e5189e8938734110451af492ef9e76380acf2.tar.bz2 |
Previous commit results in 'Error: Cask 'xquartz@2.7' is unavailable: No Cask with this name exists.'. Forget about this way, then.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac-build.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index d57a62f..41da00c 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -73,8 +73,7 @@ jobs: if: ${{ env.USE_XVFB }} # This involves black magic run: | - brew search xquartz - brew install --verbose --cask xquartz@2.7 + brew install --cask xquartz sudo /opt/X11/lib/X11/xinit/privileged_startx.d/10-tmpdirs || true working-directory: . - name: Build Tcl @@ -129,7 +128,7 @@ jobs: : do nothing } fi - ( runXvfb :1; make test-classic test-ttk; exit $? ) | tee out.txt || { + ( runXvfb :0; make test-classic test-ttk; exit $? ) | tee out.txt || { echo "::error::Failure during Test" exit 1 } |