From cf68675478c0b78bf975a0ddb627742cefeefe81 Mon Sep 17 00:00:00 2001 From: NRK Date: Tue, 10 Jan 2023 14:01:46 +0600 Subject: [PATCH] attempt at fixing macos CI --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 667c40aa..38f5dba1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,9 +27,10 @@ jobs: env: CC: clang run: | - rm '/usr/local/bin/2to3-3.11' - brew update - brew install llvm + # see: https://github.com/actions/setup-python/issues/577 + brew update || true + brew install llvm || true + brew link --overwrite python@3.11 export PATH="/usr/local/opt/llvm/bin:$PATH" export CFLAGS="$CFLAGS -Werror" make clean