From 7c30fadc34f28f605a70756a62c4f76acab38af1 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 8 Jul 2020 11:12:26 +0100 Subject: [PATCH] workflows/tests: link python@3.8. Investigated a full uninstall but it takes too long (>5m). --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 67fc51c363..9b01d2d08a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -62,12 +62,12 @@ jobs: - name: Run brew doctor run: | + # minimally fix brew doctor failures (a full clean takes ~5m) if [ "$RUNNER_OS" = "Linux" ]; then - # Cleanup some Linux `brew doctor` failures sudo rm -rf /usr/local/include/node/ else - # Link old gettext (otherwise `brew doctor` is sad) - brew link gettext + # link old formulae + brew link --overwrite --force gettext python@3.8 # remove deleted formula brew uninstall --force python@2