From 6a4115ca45788d1be2dfd7c29f95dabcca236200 Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Thu, 29 Dec 2022 19:32:17 +0000 Subject: [PATCH] ci: fix macOS runner It seems the GitHub Actions macOS image has a conflicting python in /usr/local, invoke: brew -v install python brew link --overwrite python , before installing dependencies. Signed-off-by: Rafael Kitover --- installdeps | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/installdeps b/installdeps index 704bac83..708002e4 100755 --- a/installdeps +++ b/installdeps @@ -1199,6 +1199,10 @@ brew_installdeps() { brews="$brews sfml" # fi + # This is necessary for the GitHub Actions CI: + brew -v install python + brew link --overwrite python + check brew -v install -f $brews for brew in gettext wxwidgets; do